:root {
  --ink: #1d1d1d;
  --muted: #5f5f66;
  --line: #292929;
  --lavender: #e9e8ff;
  --lavender-strong: #d9d7ff;
  --mint: #dcf4e8;
  --yellow: #fff0b8;
  --coral: #ffdcd4;
  --blue: #deecff;
  --paper: #ffffff;
  --soft: #f7f7f4;
  --max: 1200px;
  --radius: 6px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 4px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 20px 0 auto;
  z-index: 100;
  padding: 0 24px;
}

.nav-shell {
  width: min(var(--max), calc(100% - 16px));
  height: 66px;
  margin: 0 auto;
  padding: 0 16px 0 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 0 rgba(29, 29, 29, 0);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.site-header.scrolled .nav-shell { box-shadow: 0 6px 0 rgba(29, 29, 29, 0.1); }

.brand {
  font-size: 26px;
  font-weight: 850;
  line-height: 1;
}
.brand span { color: #6c65e8; }

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 650;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--ink);
  transition: right 200ms ease;
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.nav-resume {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 750;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--yellow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.nav-resume:hover { transform: translateY(-2px); box-shadow: 0 3px 0 var(--ink); }

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 4px;
}
.menu-button span { display: block; height: 2px; margin: 4px 0; background: var(--ink); transition: transform 200ms ease, opacity 200ms ease; }

.section-band { background: var(--lavender); }
.section-pad { padding: 120px max(24px, calc((100vw - var(--max)) / 2)); }

.hero {
  position: relative;
  min-height: min(880px, 88svh);
  padding: 124px 24px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  position: relative;
  width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 700;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #2fb779; box-shadow: 0 0 0 4px rgba(47,183,121,0.14); }

.hero h1 {
  margin: 0;
  font-size: clamp(56px, 7.5vw, 108px);
  line-height: 0.98;
  font-weight: 730;
  letter-spacing: 0;
}

.hero-avatar {
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin: 0 0.08em;
  vertical-align: -0.05em;
  border: 2px solid var(--line);
  border-radius: 50%;
  overflow: hidden;
}
.hero-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 36%; }

.accent-underline { position: relative; display: inline-block; }
.accent-underline::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 0;
  bottom: 0.03em;
  height: 0.11em;
  z-index: -1;
  background: var(--yellow);
  border: 1px solid var(--line);
  transform: rotate(-1deg);
}

.hero-copy {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  color: #3e3d45;
}

.hero-actions, .contact-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button {
  min-height: 48px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 4px 0 var(--ink); }
.button-dark { background: var(--ink); color: white; }
.button-light { background: white; }

.hero-tags span {
  position: absolute;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 3px 3px 0 rgba(29,29,29,0.14);
}
.tag-blue { left: -4%; top: 34%; background: var(--blue); transform: rotate(-8deg); }
.tag-yellow { right: 1%; top: 26%; background: var(--yellow); transform: rotate(7deg); }
.tag-mint { right: -3%; bottom: 22%; background: var(--mint); transform: rotate(-5deg); }

.hero-quick-links {
  width: min(1040px, 100%);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  transform: translateY(1px);
}
.hero-quick-links a {
  position: relative;
  min-height: 168px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--line);
  border-bottom: 0;
  transition: background 180ms ease;
}
.hero-quick-links a + a { border-left: 0; }
.hero-quick-links a:first-child { border-radius: var(--radius) 0 0 0; }
.hero-quick-links a:last-child { border-radius: 0 var(--radius) 0 0; }
.hero-quick-links a:hover { background: var(--soft); }
.quick-index { font-size: 12px; color: var(--muted); }
.hero-quick-links strong { margin-top: 16px; font-size: 20px; }
.hero-quick-links small { margin-top: 3px; color: var(--muted); }
.quick-arrow { position: absolute; right: 22px; bottom: 22px; font-size: 24px; }

.section-heading { max-width: 900px; margin-bottom: 58px; }
.section-heading h2, .about h2, .contact h2 {
  margin: 0;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.06;
  font-weight: 720;
  letter-spacing: 0;
}
.section-heading > p:last-child { max-width: 640px; margin: 20px 0 0; font-size: 18px; color: var(--muted); }
.eyebrow { margin: 0 0 16px; font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: 0; }
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 2px; margin: 0 10px 3px 0; background: currentColor; }

.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric { min-height: 190px; padding: 32px 28px; display: flex; flex-direction: column; justify-content: space-between; }
.metric + .metric { border-left: 1px solid var(--line); }
.metric strong { font-size: clamp(42px, 5vw, 68px); line-height: 1; font-weight: 720; }
.metric p { margin: 0; color: var(--muted); }

.projects { background: var(--soft); }
.project-list { display: grid; gap: 34px; }
.project {
  min-height: 560px;
  padding: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.project-lavender { background: var(--lavender); }
.project-mint { background: var(--mint); }
.project-yellow { background: var(--yellow); }
.project-coral { background: var(--coral); }
.project-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.project-meta span { padding: 5px 9px; border: 1px solid var(--line); border-radius: 3px; background: rgba(255,255,255,0.52); font-size: 11px; font-weight: 800; }
.project h3 { margin: 24px 0 14px; font-size: clamp(34px, 3.2vw, 42px); line-height: 1.1; letter-spacing: 0; }
.project-copy > p { color: #444; font-size: 17px; }
.result-list { margin: 24px 0 30px; padding: 0; list-style: none; border-top: 1px solid rgba(29,29,29,0.28); }
.result-list li { padding: 11px 0 11px 21px; border-bottom: 1px solid rgba(29,29,29,0.28); position: relative; font-size: 14px; }
.result-list li::before { content: "↗"; position: absolute; left: 0; font-weight: 800; }
.text-button { padding: 0 0 5px; border: 0; border-bottom: 1px solid var(--ink); background: transparent; font-weight: 800; cursor: pointer; }
.text-button span { display: inline-block; transition: transform 180ms ease; }
.text-button:hover span { transform: translateX(5px); }

.project-visual { position: relative; min-height: 420px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,0.64); overflow: hidden; }
.visual-dashboard { padding: 30px; display: flex; flex-direction: column; }
.visual-top { display: flex; justify-content: space-between; font-size: 13px; font-weight: 800; }
.visual-top span:last-child { color: #197d55; }
.chart-lines { flex: 1; display: flex; align-items: end; gap: 7%; padding: 50px 6% 20px; border-bottom: 1px solid rgba(29,29,29,0.25); }
.chart-lines i { flex: 1; height: 30%; background: #8d87ff; border: 1px solid var(--line); border-radius: 3px 3px 0 0; animation: chartPulse 4s ease-in-out infinite alternate; }
.chart-lines i:nth-child(2) { height: 52%; animation-delay: -1s; background: #77d9ad; }
.chart-lines i:nth-child(3) { height: 76%; animation-delay: -2s; background: #ffd86b; }
.chart-lines i:nth-child(4) { height: 62%; animation-delay: -1.4s; background: #ff9d8a; }
.chart-lines i:nth-child(5) { height: 92%; animation-delay: -2.8s; }
.chart-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.chart-grid div { padding: 18px 5px 0; }
.chart-grid div + div { border-left: 1px solid rgba(29,29,29,0.25); padding-left: 18px; }
.chart-grid small { display: block; color: var(--muted); }
.chart-grid strong { font-size: 26px; }
@keyframes chartPulse { to { transform: scaleY(0.82); transform-origin: bottom; } }

.visual-flow { display: grid; place-items: center; }
.flow-core { width: 130px; height: 130px; display: grid; place-items: center; z-index: 2; border: 1px solid var(--line); border-radius: 50%; background: var(--ink); color: white; font-size: 30px; font-weight: 800; }
.flow-node { position: absolute; width: 92px; height: 48px; display: grid; place-items: center; z-index: 2; border: 1px solid var(--line); border-radius: 4px; background: white; font-weight: 750; }
.node-a { top: 35px; left: calc(50% - 46px); }
.node-b { right: 26px; top: calc(50% - 24px); }
.node-c { bottom: 35px; left: calc(50% - 46px); }
.node-d { left: 26px; top: calc(50% - 24px); }
.visual-flow i { position: absolute; width: 1px; height: 112px; left: 50%; top: 82px; background: var(--line); transform-origin: bottom; }
.visual-flow .line-b { transform: rotate(90deg); }
.visual-flow .line-c { transform: rotate(180deg); }
.visual-flow .line-d { transform: rotate(270deg); }

.visual-mobile { display: flex; align-items: center; justify-content: center; }
.phone { position: absolute; width: 190px; height: 340px; padding: 24px 18px; border: 1px solid var(--line); border-radius: 24px; color: white; box-shadow: 10px 12px 0 rgba(29,29,29,0.12); }
.phone span { display: block; font-size: 13px; }
.phone-back { transform: translate(-60px, 12px) rotate(-8deg); background: #4e7c6a; }
.phone-back strong { display: block; margin-top: 110px; font-size: 28px; }
.phone-front { transform: translate(65px, -14px) rotate(7deg); background: #3a356f; }
.pass-wave { height: 110px; margin: 46px 0 42px; border: 10px double #b7b0ff; border-left-color: transparent; border-right-color: transparent; border-radius: 50%; transform: rotate(-20deg); }

.visual-network { display: grid; place-items: center; }
.network-center { width: 140px; height: 140px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--ink); color: white; font-weight: 800; }
.network-node { position: absolute; padding: 10px 14px; border: 1px solid var(--line); background: white; border-radius: 4px; font-size: 13px; font-weight: 750; }
.network-node::after { content: ""; position: absolute; width: 110px; height: 1px; background: var(--line); z-index: -1; }
.network-1 { top: 42px; left: 44px; }.network-1::after { left: 70px; top: 54px; transform: rotate(34deg); }
.network-2 { top: 42px; right: 44px; }.network-2::after { right: 55px; top: 54px; transform: rotate(-34deg); }
.network-3 { left: 28px; bottom: 60px; }.network-3::after { left: 65px; bottom: 47px; transform: rotate(-28deg); }
.network-4 { right: 28px; bottom: 60px; }.network-4::after { right: 55px; bottom: 47px; transform: rotate(28deg); }
.network-5 { bottom: 26px; left: calc(50% - 30px); }.network-5::after { width: 72px; left: 28px; bottom: 64px; transform: rotate(90deg); transform-origin: left; }

.capabilities { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 90px; }
.capability-intro { font-size: 20px; }
.capability-intro .button { margin-top: 20px; }
.capability-list { border-top: 1px solid var(--line); }
.capability-item { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.capability-item > span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; font-size: 12px; font-weight: 800; }
.capability-item h3 { margin: 0 0 5px; font-size: 24px; }
.capability-item p { margin: 0; color: var(--muted); }

.timeline { border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 0.42fr 1fr; gap: 40px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.timeline-date { font-size: 14px; color: var(--muted); }
.company { margin: 0; font-size: 13px; font-weight: 800; color: #655dd7; }
.timeline-item h3 { margin: 5px 0 10px; font-size: 28px; }
.timeline-item div > p:last-child { max-width: 720px; margin: 0; color: var(--muted); }

.photo-break { position: relative; height: min(84vh, 900px); min-height: 620px; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.photo-break > img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.photo-quote { position: absolute; left: max(24px, calc((100vw - var(--max)) / 2)); bottom: 40px; max-width: 560px; padding: 24px 28px; background: rgba(255,255,255,0.92); border: 1px solid var(--line); border-radius: var(--radius); }
.photo-quote p { margin: 0; font-size: clamp(22px, 3vw, 34px); line-height: 1.35; font-weight: 700; }

.about { display: grid; grid-template-columns: minmax(320px, 0.78fr) 1.22fr; gap: 100px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: 100%; max-height: 720px; object-fit: cover; object-position: center; border: 1px solid var(--line); border-radius: var(--radius); }
.about-photo span { position: absolute; right: -26px; top: 46px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 50%; background: var(--yellow); font-weight: 800; transform: rotate(7deg); }
.about-copy > p:not(.eyebrow) { max-width: 650px; font-size: 18px; color: var(--muted); }
.skills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.skills span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 3px; font-size: 13px; font-weight: 750; }

.contact { padding: 110px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 90px; align-items: end; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-inner > p:not(.eyebrow) { max-width: 630px; font-size: 18px; }
.contact-actions { justify-content: flex-start; }
.contact-form { display: grid; gap: 18px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.72); }
.contact-form label { display: grid; gap: 7px; }
.contact-form label > span { font-size: 13px; font-weight: 750; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 11px 2px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
}
.contact-form textarea { resize: vertical; min-height: 112px; }
.contact-form input:focus, .contact-form textarea:focus { border-bottom-width: 2px; }
.contact-form .button { width: max-content; margin-top: 4px; cursor: pointer; }
.form-status { min-height: 24px; margin: 0; font-size: 13px; color: var(--muted); }

footer { min-height: 110px; padding: 30px max(24px, calc((100vw - var(--max)) / 2)); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
footer p { font-size: 13px; color: var(--muted); }
.back-top { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 4px; font-size: 20px; }

.case-dialog { width: min(720px, calc(100% - 32px)); max-height: min(780px, calc(100svh - 32px)); padding: 48px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 14px 14px 0 rgba(29,29,29,0.2); }
.case-dialog::backdrop { background: rgba(29,29,29,0.66); backdrop-filter: blur(4px); }
.case-dialog h2 { margin: 0; font-size: clamp(34px, 5vw, 52px); line-height: 1.05; }
.dialog-close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 4px; background: var(--paper); font-size: 25px; line-height: 1; cursor: pointer; }
.dialog-lead { font-size: 18px; color: var(--muted); }
.dialog-section { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.dialog-section h3 { margin: 0 0 8px; font-size: 18px; }
.dialog-section p { margin: 0; }
.dialog-section ul { margin: 8px 0 0; padding-left: 20px; }
.dialog-result { padding: 22px; background: var(--yellow); border: 1px solid var(--line); border-radius: 4px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms cubic-bezier(.2,.75,.25,1), transform 700ms cubic-bezier(.2,.75,.25,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }

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

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 76px;
    left: 8px;
    right: 8px;
    display: none;
    padding: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 6px 0 rgba(29,29,29,0.12);
  }
  .nav-links.open { display: grid; gap: 0; }
  .nav-links a { padding: 13px 6px; border-bottom: 1px solid #ddd; }
  .nav-links a:last-child { border: 0; }
  .nav-resume { margin-left: auto; }
  .menu-button { display: block; }
  .menu-button.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button.open span:nth-child(2) { opacity: 0; }
  .menu-button.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero-tags { display: none; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .metric:nth-child(4) { border-top: 1px solid var(--line); }
  .project { grid-template-columns: 1fr; gap: 40px; padding: 42px; }
  .project-visual { min-height: 390px; }
  .capability-layout, .about, .contact { grid-template-columns: 1fr; gap: 54px; }
  .about-photo { max-width: 640px; }
  .photo-break { min-height: 560px; height: 72vh; }
}

@media (max-width: 680px) {
  .site-header { inset: 10px 0 auto; padding: 0 10px; }
  .nav-shell { width: 100%; height: 58px; padding: 0 8px 0 14px; }
  .nav-resume { display: none; }
  .hero { min-height: auto; padding: 106px 16px 0; }
  .hero h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero-copy { font-size: 17px; }
  .hero-quick-links { grid-template-columns: 1fr; margin-top: 56px; }
  .hero-quick-links a { min-height: 118px; padding: 19px 20px; border-bottom: 0; }
  .hero-quick-links a + a { border-left: 1px solid var(--line); border-top: 0; }
  .hero-quick-links a:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .hero-quick-links a:last-child { border-radius: 0; }
  .hero-quick-links strong { margin-top: 8px; }
  .section-pad { padding: 82px 18px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2, .about h2, .contact h2 { font-size: 40px; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric { min-height: 138px; padding: 24px 4px; }
  .metric + .metric { border-left: 0; border-top: 1px solid var(--line); }
  .project { min-height: auto; padding: 28px 20px; gap: 30px; }
  .project h3 { font-size: 36px; }
  .project-visual { min-height: 310px; }
  .visual-dashboard { padding: 20px; }
  .chart-grid strong { font-size: 20px; }
  .phone { width: 150px; height: 270px; border-radius: 20px; }
  .phone-back { transform: translate(-48px, 10px) rotate(-8deg); }
  .phone-front { transform: translate(50px, -10px) rotate(7deg); }
  .pass-wave { height: 80px; margin: 30px 0; }
  .network-node::after { width: 70px; }
  .capability-layout { gap: 34px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .photo-break { min-height: 560px; height: 78vh; }
  .photo-break > img { object-position: 47% center; }
  .photo-quote { left: 18px; right: 18px; bottom: 18px; padding: 18px; }
  .about { padding-left: 18px; padding-right: 18px; }
  .about-photo span { right: -6px; top: 26px; }
  .contact { padding: 82px 18px; gap: 50px; }
  .contact-form { padding: 22px 18px; }
  footer { flex-wrap: wrap; }
  footer p { order: 3; width: 100%; }
  .case-dialog { padding: 42px 22px 24px; }
}
