:root {
  --navy-950: #03172c;
  --navy-900: #061f3b;
  --navy-800: #0a2e50;
  --navy-700: #12466f;
  --gold-600: #b97713;
  --gold-500: #c98b22;
  --gold-400: #e7a63a;
  --ivory: #f8f5ee;
  --pearl: #fffdf8;
  --white: #ffffff;
  --slate-50: #f5f7f9;
  --slate-100: #e8edf1;
  --slate-300: #b8c4cd;
  --slate-500: #687b8b;
  --text: #10243a;
  --success: #2a9d78;
  --shadow-sm: 0 12px 30px rgba(3, 23, 44, .08);
  --shadow-lg: 0 28px 70px rgba(3, 23, 44, .16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1360px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--ivory);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section-tight { padding: 76px 0; }
.section-white { background: var(--white); }
.section-navy { background: var(--navy-900); color: var(--white); overflow: hidden; }
.section-soft { background: #eef2f4; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 52px; align-items: center; }
.grid-2 > div:not(.brand-pane):not(.card):not(.contact-form),
.grid-2 > article:not(.card) { text-align: center; }
.grid-2 > div:not(.brand-pane) > .eyebrow,
.grid-2 > article > .eyebrow { justify-content: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
  color: var(--gold-500); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow::before {
  content: "✦";
  width: auto;
  height: auto;
  background: none;
  color: var(--gold-400);
  font-size: 11px;
  line-height: 1;
}
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: inherit; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(45px, 6.4vw, 82px); margin-bottom: 24px; }
h2 { font-size: clamp(34px, 4.5vw, 58px); margin-bottom: 20px; }
h3 { font-size: 23px; margin-bottom: 12px; }
.lead { color: var(--slate-500); font-size: clamp(17px, 2vw, 20px); line-height: 1.8; }
.section-navy .lead, .hero .lead { color: rgba(255,255,255,.72); }
.section-heading {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-heading .eyebrow,
.section-heading.center .eyebrow { justify-content: center; }
.accent { color: var(--gold-400); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.site-header.scrolled { background: rgba(3,23,44,.94); box-shadow: 0 12px 40px rgba(0,0,0,.18); backdrop-filter: blur(16px); }
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; color: var(--white); min-width: 210px; }
.brand-logo-mark {
  width: 49px;
  height: 49px;
  flex: 0 0 49px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.78);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.brand-copy strong { display: block; font-size: 17px; letter-spacing: .16em; line-height: 1.05; }
.brand-copy span { color: rgba(255,255,255,.58); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,.76); font-size: 13px; font-weight: 700; position: relative; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -10px; width: 0; height: 2px; background: var(--gold-400); transition: width .25s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 19px;
  border-radius: 999px; background: var(--gold-400); color: var(--navy-950) !important; box-shadow: 0 8px 22px rgba(231,166,58,.24);
}
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.18); border-radius: 13px; background: rgba(255,255,255,.08); color: white; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; transition: .25s; }

.hero {
  min-height: 820px; padding: 158px 0 90px; display: grid; align-items: center;
  background:
    radial-gradient(circle at 82% 25%, rgba(25,111,163,.34), transparent 34%),
    linear-gradient(125deg, var(--navy-950) 0%, var(--navy-900) 52%, #0a3c64 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.hero::before { content: ""; position: absolute; width: 650px; height: 650px; right: -220px; top: 90px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.hero-copy { max-width: 720px; text-align: center; }
.hero-copy .eyebrow { justify-content: center; }
.hero h1 span { display: block; }
.hero-tagline {
  margin: -4px 0 22px;
  color: var(--gold-400);
  font-size: clamp(13px, 1.7vw, 17px);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 54px; padding: 0 25px;
  border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 800; transition: transform .2s, background .2s, border .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold-400); color: var(--navy-950); box-shadow: 0 14px 28px rgba(231,166,58,.22); }
.btn-outline { border-color: rgba(255,255,255,.26); color: var(--white); background: rgba(255,255,255,.06); }
.btn-navy { background: var(--navy-900); color: white; box-shadow: var(--shadow-sm); }
.btn-soft { border-color: var(--slate-100); background: white; color: var(--navy-800); }
.character-stage {
  min-height: 650px;
  display: grid;
  place-items: center;
  position: relative;
}
.character-frame {
  position: relative;
  width: min(100%, 325px);
  aspect-ratio: 887 / 1774;
  border-radius: 30px;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 42px 80px rgba(0,0,0,.3);
}
.character-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}
.floating-card {
  position: absolute; z-index: 3; padding: 18px 20px; border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px; background: rgba(6,31,59,.76); color: white; backdrop-filter: blur(16px); box-shadow: var(--shadow-lg);
}
.floating-card strong { display: block; font-size: 14px; }
.floating-card small { color: rgba(255,255,255,.62); }
.floating-card.one { left: -30px; bottom: 72px; }
.floating-card.two { right: -20px; top: 90px; }
.hero-note { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 26px; color: rgba(255,255,255,.58); font-size: 12px; letter-spacing: .04em; }
.hero-note i { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 7px rgba(42,157,120,.13); }

.capability-strip { position: relative; z-index: 4; margin-top: -38px; }
.capability-panel { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: var(--radius-md); overflow: hidden; background: white; box-shadow: var(--shadow-lg); }
.capability {
  min-height: 142px;
  padding: 25px;
  border-right: 1px solid var(--slate-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.capability:last-child { border-right: 0; }
.icon-box { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: var(--gold-600); background: rgba(231,166,58,.14); font-weight: 900; }
.capability strong { display: block; color: var(--navy-900); font-size: 13px; }
.capability span { color: var(--slate-500); font-size: 11px; }

.card {
  background: var(--white); border: 1px solid rgba(16,36,58,.08); border-radius: var(--radius-md); padding: 30px;
  box-shadow: 0 12px 34px rgba(3,23,44,.055); transition: transform .25s, box-shadow .25s, border .25s;
  text-align: center;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(201,139,34,.3); }
.card > .icon-box { margin-inline: auto; }
.service-card { min-height: 350px; display: flex; flex-direction: column; }
.service-card .icon-box { margin: 0 auto 38px; }
.service-card p { color: var(--slate-500); font-size: 14px; }
.service-card a { color: var(--gold-600); font-size: 12px; font-weight: 800; margin-top: auto; }
.principle {
  padding: 28px 0;
  border-bottom: 1px solid var(--slate-100);
  display: block;
  text-align: center;
}
.principle:last-child { border-bottom: 0; }
.number { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(201,139,34,.38); color: var(--gold-600); font-size: 12px; font-weight: 800; }
.principle .number { margin: 0 auto 15px; }
.principle p { margin: 0; color: var(--slate-500); font-size: 14px; }
.brand-pane {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(16,36,58,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: white;
}
.brand-pane img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.quote-card { padding: 38px; background: var(--navy-900); color: white; border-radius: var(--radius-md); }
.quote-card { text-align: center; }
.quote-card blockquote { margin: 0 0 18px; font-size: clamp(25px,3vw,38px); line-height: 1.3; font-weight: 700; letter-spacing: -.03em; }

.case-study { overflow: hidden; padding: 0; }
.case-visual {
  height: 245px;
  padding: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-900), #146a9a);
}
.case-visual > div { position: relative; z-index: 2; max-width: 780px; }
.case-visual .eyebrow { justify-content: center; }
.case-visual.gold { background: linear-gradient(135deg, #6a4310, var(--gold-400)); }
.case-visual::before { content: ""; position: absolute; width: 190px; height: 190px; right: -30px; top: -50px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 34px rgba(255,255,255,.05); }
.case-body { padding: 30px; }
.case-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 18px; }
.tag { padding: 6px 10px; border-radius: 999px; background: var(--slate-50); color: var(--navy-700); font-size: 10px; font-weight: 800; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.process-step { padding: 25px 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.05); text-align: center; }
.process-step b { display: block; margin-bottom: 28px; color: var(--gold-400); font-size: 12px; }
.process-step p { color: rgba(255,255,255,.62); font-size: 12px; margin: 0; }

.cta-panel { padding: 66px; border-radius: var(--radius-lg); background: linear-gradient(120deg, var(--navy-950), var(--navy-700)); color: white; position: relative; overflow: hidden; }
.cta-panel::after { content: ""; position: absolute; width: 350px; height: 350px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; right: -110px; top: -160px; box-shadow: 0 0 0 60px rgba(255,255,255,.025); }
.cta-panel .cta-content { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; text-align: center; }
.cta-panel .eyebrow { justify-content: center; }
.cta-panel p { color: rgba(255,255,255,.7); }

.page-hero {
  min-height: 520px; padding: 170px 0 90px; display: flex; align-items: center; color: white;
  background: radial-gradient(circle at 80% 30%, rgba(30,120,170,.3), transparent 30%), linear-gradient(120deg, var(--navy-950), var(--navy-800));
}
.page-hero h1 { font-size: clamp(42px, 6vw, 72px); max-width: 900px; }
.page-hero .container { text-align: center; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1, .page-hero p { margin-inline: auto; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.7); font-size: 19px; }
.breadcrumb { margin-bottom: 25px; color: rgba(255,255,255,.46); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.page-hero .breadcrumb { text-align: left; }
.breadcrumb span { color: var(--gold-400); }

.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li { position: relative; padding: 11px 0 11px 34px; border-bottom: 1px solid var(--slate-100); color: var(--slate-500); font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 10px; color: var(--gold-600); font-weight: 900; }
.industry-card { min-height: 240px; text-align: center; }
.industry-card .industry-index { color: var(--gold-500); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.industry-card p { color: var(--slate-500); font-size: 13px; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: start; }
.contact-panel { padding: 40px; border-radius: var(--radius-md); background: var(--navy-900); color: white; text-align: center; }
.contact-panel .eyebrow { justify-content: center; }
.contact-panel p { color: rgba(255,255,255,.66); }
.contact-item { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-item:last-child { border-bottom: 0; }
.contact-item small { display: block; color: var(--gold-400); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .12em; font-size: 9px; }
.contact-form { padding: 40px; border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.contact-form > .eyebrow { display: flex; justify-content: center; }
.contact-form > h2 { text-align: center; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; color: var(--navy-800); font-size: 11px; font-weight: 800; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid #dce3e8; border-radius: 13px; background: #fbfcfd; color: var(--text); padding: 14px 15px; outline: 0; transition: border .2s, box-shadow .2s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(201,139,34,.1); }
.form-status { display: none; margin: 16px 0 0; padding: 12px 14px; border-radius: 12px; font-size: 12px; }
.form-status.success { display: block; background: #e7f7f0; color: #176c51; }
.form-status.error { display: block; background: #fff0ef; color: #a43b31; }
.honeypot { position: absolute !important; left: -10000px !important; opacity: 0 !important; }

.site-footer { background: var(--navy-950); color: white; padding: 76px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 46px; }
.footer-grid > div { text-align: center; }
.footer-brand { text-align: center; }
.footer-brand p { color: rgba(255,255,255,.57); max-width: 390px; margin-inline: auto; font-size: 13px; }
.footer-full-brand {
  display: block;
  width: min(100%, 350px);
  padding: 9px;
  margin: 0 auto 20px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.footer-full-brand img { width: 100%; height: auto; }
.footer-title { margin-bottom: 18px; color: var(--gold-400); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; text-align: center; }
.footer-links { display: grid; gap: 11px; text-align: center; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 12px; }
.footer-links a:hover { color: white; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
  justify-content: center;
}
.social-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 11px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  transition: transform .2s, color .2s, border-color .2s, background .2s;
}
.social-link:hover {
  transform: translateY(-3px);
  color: var(--navy-950);
  border-color: var(--gold-400);
  background: var(--gold-400);
}
.footer-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  color: rgba(255,255,255,.4);
  font-size: 10px;
}

/* Premium project case-study headers */
.project-case-header {
  min-height: 300px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 38px;
  padding: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 92% 10%, rgba(255,255,255,.13), transparent 28%),
    linear-gradient(125deg, var(--navy-950), #125f8d);
  color: white;
  box-shadow: var(--shadow-lg);
}
.project-case-header.education {
  background:
    radial-gradient(circle at 92% 10%, rgba(255,255,255,.15), transparent 28%),
    linear-gradient(125deg, #51320a, #c9871f);
}
.project-case-header::after {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  right: -85px;
  top: -125px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(255,255,255,.035);
}
.project-case-number {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 28px;
  background: rgba(255,255,255,.09);
  color: var(--gold-400);
  font-size: 34px;
  font-weight: 800;
  box-shadow: inset 0 1px rgba(255,255,255,.12);
}
.project-case-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: left;
}
.project-case-sector {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.project-case-sector::before { content: "✦"; font-size: 10px; }
.project-case-content h2 { margin-bottom: 12px; font-size: clamp(30px, 4vw, 50px); }
.project-case-content p { max-width: 760px; margin-bottom: 0; color: rgba(255,255,255,.7); }
.whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 58px; height: 58px; display: grid; place-items: center;
  border-radius: 50%; background: #24d366; color: white; box-shadow: 0 15px 32px rgba(36,211,102,.3); font-weight: 900; transition: transform .2s;
}
.whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); padding: 110px 30px 30px; background: var(--navy-950); flex-direction: column; align-items: stretch; transform: translateX(100%); transition: transform .3s; box-shadow: -20px 0 50px rgba(0,0,0,.25); }
  .menu-open .nav-links { transform: none; }
  .nav-links a { padding: 12px 0; font-size: 15px; }
  .nav-toggle { display: block; position: relative; z-index: 5; }
  .hero-grid, .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; }
  .hero-copy { max-width: 800px; }
  .character-stage { max-width: 650px; width: 100%; margin: 20px auto 0; }
  .capability-panel { grid-template-columns: repeat(2, 1fr); }
  .capability:nth-child(2) { border-right: 0; }
  .capability:nth-child(-n+2) { border-bottom: 1px solid var(--slate-100); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .section-tight { padding: 58px 0; }
  .nav-wrap { min-height: 78px; }
  .brand { min-width: auto; }
  .brand-logo-mark { width: 43px; height: 43px; flex-basis: 43px; }
  .brand-copy strong { font-size: 14px; }
  .hero { min-height: auto; padding: 126px 0 78px; }
  .hero-grid { gap: 40px; }
  .hero-actions .btn { width: 100%; }
  .character-stage { min-height: 520px; }
  .character-frame { width: min(100%, 260px); border-radius: 24px; }
  .floating-card { padding: 13px 15px; }
  .floating-card.one { left: 10px; bottom: 22px; }
  .floating-card.two { right: 10px; top: 28px; }
  .capability-strip { margin-top: 14px; background: var(--ivory); padding-top: 14px; }
  .capability-panel, .grid-3, .grid-4, .process-grid, .form-grid { grid-template-columns: 1fr; }
  .capability { border-right: 0; border-bottom: 1px solid var(--slate-100); }
  .capability:last-child { border-bottom: 0; }
  .card, .contact-form, .contact-panel { padding: 24px; }
  .service-card { min-height: auto; }
  .service-card .icon-box { margin-bottom: 24px; }
  .page-hero { min-height: 440px; padding: 132px 0 62px; }
  .brand-pane { min-height: 280px; padding: 16px; }
  .cta-panel { padding: 40px 25px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .project-case-header {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 23px;
    text-align: center;
  }
  .project-case-number { width: 80px; height: 80px; margin-inline: auto; border-radius: 22px; font-size: 25px; }
  .project-case-content { text-align: center; }
  .project-case-sector { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
