:root {
  --ink: #101828;
  --ink-soft: #334155;
  --muted: #667085;
  --paper: #f4f7f8;
  --panel: #ffffff;
  --card: #eef4f8;
  --lime: #d7f36a;
  --line: #dfe7ec;
  --orange: #f50158;
  --display: 'Trebuchet MS', sans-serif;
  --body: 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #f6f8f9; font-family: var(--body); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 48px)); margin: auto; }
.site-header { position: sticky; top: 0; z-index: 10; padding: 18px 0; border-bottom: 1px solid rgba(16,24,40,.06); background: rgba(246,248,249,.9); backdrop-filter: blur(12px); }
.nav { display:flex; align-items:center; justify-content:space-between; gap:24px; }
.logo-link { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark {
  display: inline-flex;
  align-items: end;
  gap: 3px;
  width: 27px;
  height: 27px;
  padding: 5px;
  border-radius: 9px;
  background: var(--ink);
  transform: rotate(-8deg);
}
.logo-mark i {
  display: block;
  width: 4px;
  border-radius: 4px;
  background: var(--orange);
}
.logo-mark i:nth-child(1) { height: 8px; }
.logo-mark i:nth-child(2) { height: 13px; background: var(--lime); }
.logo-mark i:nth-child(3) { height: 17px; }
.logo { font: 800 24px var(--display); letter-spacing: .04em; }
.logo span { color: var(--orange); }
.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  text-transform: capitalize;
  transition: color .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta, .button { display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:14px 22px; border:0; background:var(--ink); color:white; font-weight:700; border-radius:14px; cursor:pointer; box-shadow: 0 10px 22px rgba(16, 24, 40, 0.12); transition: transform .2s ease, box-shadow .2s ease; }
.nav-cta:hover, .button:hover { transform: translateY(-1px); box-shadow: 0 16px 30px rgba(16, 24, 40, 0.12); }
.button.light { background:var(--lime); color:var(--ink); box-shadow: 0 10px 22px rgba(215, 243, 106, 0.35); }
.hero-modern {
  background: radial-gradient(circle at top right, rgba(215,243,106,.8), transparent 28%),
              linear-gradient(135deg, #f6f8f9 0%, #edf5f7 45%, #eef3f1 100%);
  padding: 88px 0 110px;
}
.hero-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap:52px; align-items:center; }
.kicker { color:var(--orange); font-weight:800; letter-spacing:.12em; text-transform:uppercase; font-size:12px; }
h1,h2,h3 { font-family:var(--display); line-height:1.04; margin: 0 0 20px; }
h1 { font-size:clamp(48px, 6vw, 82px); max-width:700px; letter-spacing:-.05em; }
h2 { font-size:clamp(30px, 4vw, 54px); }
.hero p { color:var(--muted); font-size:19px; max-width:600px; }
.actions { display:flex; gap:14px; flex-wrap:wrap; margin-top:32px; }
.hero-metrics { display:flex; gap:16px; flex-wrap:wrap; margin-top:34px; }
.metric {
  min-width: 140px; padding: 14px 18px; background: rgba(255,255,255,.7); border:1px solid rgba(16,24,40,.05); border-radius:14px; box-shadow: var(--shadow);
}
.metric strong { display:block; font-size:18px; color: var(--ink); }
.metric span { color: var(--muted); font-size:13px; }
.hero-panel { position: relative; min-height: 380px; }
.floating-card {
  position: absolute; right: 0; width: min(320px, 90%); padding: 24px 22px; border-radius: 22px; background: rgba(255,255,255,.88); border: 1px solid rgba(16,24,40,.04); box-shadow: var(--shadow); backdrop-filter: blur(8px);
}
.card-primary { top: 30px; left: 20px; }
.card-secondary { bottom: 12px; right: 20px; background: #101828; color: white; }
.card-label { display:block; font-size:11px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; opacity: .75; margin-bottom: 12px; }
.floating-card strong { display:block; font-family:var(--display); font-size:30px; line-height:1.1; margin-bottom:12px; }
.floating-card p { margin:0; color:inherit; opacity:.72; }
.section { padding: 100px 0; }
.section-head { display:flex; justify-content:space-between; gap:32px; align-items:end; margin-bottom:44px; }
.section-head p { color:var(--muted); max-width:390px; }
.services { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.service {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 28px 26px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff 0%, #f0f4f5 100%);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(16,24,40,0.03);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service::after {
  content: '';
  position: absolute;
  right: -34px;
  top: -34px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(245,1,88,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(245,1,88,.04), 0 0 0 32px rgba(245,1,88,.025);
}
.service:hover {
  transform: translateY(-5px);
  border-color: rgba(245,1,88,.42);
  box-shadow: 0 22px 42px rgba(16,24,40,.1);
}
.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 13px;
  background: var(--ink);
  color: var(--lime);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
}
.service h3 { font-size:28px; margin-bottom:14px; }
.service p, .muted { color:var(--muted); }
.service p {
  margin-top: 0;
  line-height: 1.65;
}
.service a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: color .2s ease, gap .2s ease;
}
.service a:hover {
  color: var(--orange);
  gap: 12px;
}
.band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(245,1,88,.2), transparent 25%),
    linear-gradient(135deg, #101828 0%, #172536 100%);
  color:white;
}
.band::before {
  content: '';
  position: absolute;
  top: 0;
  right: 12%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.14), transparent);
}
.band .muted { color:#c1ced7; }
.split { display:grid; grid-template-columns: .9fr 1.1fr; gap:90px; align-items:start; }
.check-list { display:grid; gap:18px; margin-top:28px; }
.check { display:flex; gap:14px; border-bottom:1px solid rgba(255,255,255,.16); padding-bottom:16px; }
.check b { color:var(--lime); }
.approach-wrapper {
  position: relative;
  display: grid;
  gap: 30px;
}
.approach-intro {
  max-width: 760px;
}
.approach-intro h2 {
  max-width: 620px;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.approach-card {
  position: relative;
  min-height: 218px;
  padding: 25px 22px 22px;
  overflow: hidden;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.approach-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  background: var(--orange);
  transition: width .2s ease;
}
.approach-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.09);
  border-color: rgba(245,1,88,.52);
}
.approach-card:hover::after {
  width: 100%;
}
.approach-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(245,1,88,.15);
  color: var(--lime);
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.approach-card h3 {
  position: relative;
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 28px);
}
.approach-card p {
  margin: 0;
  color: #d5e0e7;
  line-height: 1.6;
}
.technology-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f6f8f9 0%, #e8f1f1 100%);
  color: var(--ink);
}
.technology-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  pointer-events: none;
  display: none;
}
.technology-heading {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}
.technology-heading .kicker { color: var(--orange); }
.technology-heading h2 {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink);
}
.technology-heading > p {
  max-width: 360px;
  margin: 8px 0 0;
  color: var(--muted);
}
.technology-grid {
  position: relative;
  counter-reset: technology-category;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
}
.technology-category {
  position: relative;
  grid-column: span 1;
  padding: 25px 0 27px;
  border-top: 1px solid rgba(16,24,40,.16);
}
.technology-category::before {
  counter-increment: technology-category;
  content: '0' counter(technology-category);
  position: absolute;
  top: 25px;
  right: 0;
  color: rgba(16,24,40,.16);
  font: 800 27px var(--display);
  line-height: 1;
}
.technology-category:nth-child(4)::before,
.technology-category:nth-child(5)::before,
.technology-category:nth-child(6)::before,
.technology-category:nth-child(7)::before {
  content: counter(technology-category);
}
.technology-category h3 {
  position: relative;
  max-width: 80%;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 20px;
}
.technology-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.technology-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(16,24,40,.12);
  border-radius: 9px;
  background: rgba(255,255,255,.72);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.technology-item:hover {
  transform: translateY(-2px);
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}
.technology-mark {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.process { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.process div { border:1px solid var(--line); background: rgba(255,255,255,.8); border-radius:18px; padding:22px 18px; }
.process strong { font: 32px var(--display); color:var(--orange); }
.workflow-header {
  margin-bottom: 26px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 12px;
}
@keyframes workflow-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.workflow-box {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fa 100%);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 20px;
  padding: 24px 22px 20px;
  box-shadow: 0 14px 30px rgba(16,24,40,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: workflow-reveal .65s ease both;
}
.workflow-box:nth-child(2) { animation-delay: .08s; }
.workflow-box:nth-child(3) { animation-delay: .16s; }
.workflow-box:nth-child(4) { animation-delay: .24s; }
.workflow-box:nth-child(5) { animation-delay: .32s; }
.workflow-box:nth-child(6) { animation-delay: .4s; }
.workflow-box:nth-child(7) { animation-delay: .48s; }
.workflow-box:nth-child(8) { animation-delay: .56s; }
.workflow-box:nth-child(9) { animation-delay: .64s; }
@media (prefers-reduced-motion: reduce) {
  .workflow-box {
    animation: none;
  }
}
.workflow-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(16,24,40,0.08);
}
.workflow-accent {
  background: linear-gradient(180deg, #fffef8 0%, #f5f9ef 100%);
}
.workflow-accent-alt {
  background: linear-gradient(180deg, #fdfdff 0%, #f1f7fb 100%);
}
.workflow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  background: rgba(245, 1, 88, 0.12);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.workflow-box h3 {
  margin-bottom: 12px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
}
.workflow-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.cta {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background:
    radial-gradient(circle at 88% 50%, rgba(255,255,255,.72), transparent 24%),
    linear-gradient(135deg, #effaf3 0%, #dff3e6 58%, #ccebd8 100%);
  color: var(--ink);
}
.cta::before,
.cta::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(42,116,74,.18);
  border-radius: 50%;
  pointer-events: none;
}
.cta::before {
  width: 360px;
  height: 360px;
  right: -90px;
  top: -120px;
}
.cta::after {
  width: 230px;
  height: 230px;
  right: -25px;
  top: -55px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta h2 {
  max-width: 580px;
  margin: 8px 0 0;
  font-size: clamp(34px, 5vw, 64px);
}
.cta .kicker { color: var(--orange); }
.cta .button {
  flex-shrink: 0;
  padding: 16px 24px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 24px rgba(245,1,88,.22);
}
footer {
  padding: 30px 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}
footer strong { color: var(--ink); }
footer strong span { color: var(--orange); }
.portfolio-intro { max-width:720px; margin-bottom:56px; }
.portfolio-intro-modern { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.portfolio-intro-modern h1 { margin-top: 12px; }
.portfolio-intro-copy { max-width: 390px; }
.portfolio-intro-copy p { margin: 14px 0 0; }
.portfolio-count { display: inline-flex; align-items: baseline; gap: 9px; color: var(--orange); font: 800 28px var(--display); }
.portfolio-count small { color: var(--muted); font: 700 12px var(--body); letter-spacing: .08em; text-transform: uppercase; }
.portfolio-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.project { min-height:360px; padding:28px; display:flex; flex-direction:column; justify-content:space-between; border:1px solid var(--line); border-radius:20px; transition: transform .2s ease, box-shadow .2s ease; }
.project:hover { transform: translateY(-5px); box-shadow: 0 22px 42px rgba(16,24,40,.12); }
.project-topline { display: flex; justify-content: space-between; align-items: center; font-weight: 800; letter-spacing: .12em; }
.project-arrow { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid currentColor; border-radius: 50%; font-size: 18px; transition: transform .2s ease, background .2s ease; }
.project:hover .project-arrow { transform: rotate(45deg); background: rgba(255,255,255,.35); }
.project-lime { background:var(--lime); }
.project-orange { background:var(--orange); }
.project-ink { background:var(--ink); color:white; }
.project-sage { background:#dce8df; }
.project-type { font-size:12px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.project h2 { font-size:38px; margin:12px 0; }
.project p { max-width:430px; margin:0; }
.project-ink p, .project-ink .project-meta { color:#c6d1d0; }
.project-meta { display:flex; justify-content:space-between; gap:18px; padding-top:22px; border-top:1px solid rgba(19,35,47,.2); font-size:13px; font-weight:700; }
.project-meta strong { text-align: right; }
.project-ink .project-meta { border-color:#3b4d54; }
.simple { padding:100px 0; min-height:70vh; }
.migration-page { background: #f6f8f9; }
.migration-hero {
  padding: 100px 0 110px;
  background: linear-gradient(135deg, #fff5f8 0%, #f6f8f9 58%, #eaf2f2 100%);
}
.migration-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}
.migration-copy h1 { max-width: 680px; margin-top: 14px; }
.migration-copy > p { max-width: 600px; color: var(--muted); font-size: 19px; }
.migration-panel {
  position: relative;
  padding: 34px 30px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 24px 50px rgba(16,24,40,.16);
}
.migration-panel::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -80px;
  border: 1px solid rgba(245,1,88,.5);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(245,1,88,.08);
}
.migration-panel-label { color: var(--lime); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.migration-panel strong { display: block; max-width: 300px; margin: 20px 0 14px; font: 800 34px/1.08 var(--display); }
.migration-panel p { max-width: 330px; margin: 0; color: #c1ced7; }
.migration-panel-line { display: flex; align-items: center; gap: 10px; margin-top: 38px; color: #fff; font-size: 12px; font-weight: 700; }
.migration-panel-line span { width: 30px; height: 2px; background: var(--orange); }
.migration-section-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 44px; }
.migration-section-head h2 { max-width: 560px; margin: 10px 0 0; }
.migration-section-head > p { max-width: 390px; margin: 0; color: var(--muted); }
.migration-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.migration-step { min-height: 260px; padding: 24px 20px; border-top: 3px solid var(--orange); background: #fff; border-radius: 14px; box-shadow: 0 12px 28px rgba(16,24,40,.05); }
.migration-step span { color: var(--orange); font-weight: 800; letter-spacing: .1em; }
.migration-step h3 { margin: 35px 0 12px; font-size: 26px; }
.migration-step p { margin: 0; color: var(--muted); line-height: 1.6; }
.migration-note { padding: 64px 0; background: var(--lime); }
.migration-note-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.migration-note h2 { margin: 10px 0 0; }
.migration-note .button { background: var(--ink); }
.contact-page { background: #f6f8f9; }
.contact-hero { padding: 100px 0; background: linear-gradient(135deg, #f6f8f9 0%, #fff5f8 55%, #ffe7ef 100%); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.contact-intro h1 { margin: 14px 0 18px; }
.contact-intro > p { max-width: 500px; color: var(--muted); font-size: 19px; }
.contact-promise { display: grid; grid-template-columns: 40px 1fr; gap: 3px 14px; max-width: 430px; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(16,24,40,.14); }
.contact-promise span { grid-row: span 2; color: var(--orange); font-weight: 800; }
.contact-promise strong { font-family: var(--display); font-size: 20px; }
.contact-promise small { color: var(--muted); font-size: 13px; line-height: 1.5; }
.contact-form-wrap { padding: 30px; background: rgba(255,255,255,.86); border: 1px solid rgba(16,24,40,.09); border-radius: 22px; box-shadow: 0 24px 60px rgba(16,24,40,.1); }
.contact-form-label { margin-bottom: 22px; color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.form { max-width:680px; display:grid; gap:15px; }
.form label { display: grid; gap: 7px; color: var(--ink-soft); font-size: 13px; font-weight: 700; }
.form label span { color: var(--muted); font-weight: 400; }
input, textarea { width:100%; padding:14px; border:1px solid var(--line); background:white; border-radius:12px; font:inherit; }
input:focus, textarea:focus { outline: 3px solid rgba(245,1,88,.14); border-color: var(--orange); }
textarea { min-height:150px; }
@media (max-width: 980px) {
  .hero-grid,
  .split,
  .portfolio-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .hero-panel { min-height: 260px; }
  .floating-card { position: relative; left: auto; right: auto; top: auto; bottom: auto; width: 100%; margin-bottom: 16px; }
  .migration-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .migration-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .portfolio-intro-modern { align-items: start; flex-direction: column; gap: 24px; }
  .services { grid-template-columns: 1fr; }
  .technology-heading { display: block; }
  .technology-heading > p { margin-top: 18px; }
  .technology-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .technology-category,
  .technology-category:nth-child(2) { grid-column: span 1; }
}

@media (max-width: 760px) {
  html, body { overflow-x: hidden; }
  .container { width: min(100% - 32px, 600px); }

  .site-header { padding: 10px 0; }
  .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .logo {
    display: block;
  }
  .logo-link {
    justify-content: center;
  }
  .nav-links {
    flex-wrap: wrap;
    gap: 12px 18px;
    width: 100%;
    justify-content: center;
  }
  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 10px 13px;
    font-size: 13px;
  }
  .hero-modern { padding: 70px 0; }
  .migration-hero { padding: 70px 0; }
    .contact-hero { padding: 70px 0; }
  .actions { flex-direction: column; align-items: stretch; }
  .button, .nav-cta { justify-content: center; width: 100%; }
  .section, .cta { padding: 70px 0; }
  .section-head, .cta-inner { display:block; }
  .section-head p { margin-top: 18px; }
  .migration-section-head { display: block; }
  .migration-section-head > p { margin-top: 18px; }
  .migration-steps { grid-template-columns: 1fr; }
  .migration-step { min-height: 0; }
  .migration-note-inner { display: block; }
  .migration-note .button { margin-top: 24px; }
    .contact-form-wrap { padding: 24px 20px; }
  .project { min-height: 320px; padding: 24px 22px; }
  .project-meta { align-items: flex-start; flex-direction: column; gap: 10px; }
  .project-meta strong { text-align: left; }
  .technology-heading { display: block; }
  .technology-heading > p { margin-top: 18px; }
  .technology-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; gap: 16px; }
  .workflow-grid { grid-template-columns: 1fr; gap: 16px; }
  .technology-category,
  .technology-category:nth-child(2) { grid-column: span 1; }
  .hero-copy,
  .hero-panel,
  .technology-heading,
  .cta-inner { min-width: 0; }
  h1 { font-size: 44px; }
  .project h2 { font-size: 34px; }
  .check { flex-direction: column; gap: 8px; }
  .cta .button { margin-top: 24px; }
}
