:root {
  --navy: #0b2f4a;
  --navy2: #123f62;
  --blue: #1f6398;
  --light: #f4fbfb;
  --mint: #dff4f1;
  --sand: #f6f0e6;
  --gold: #c7a866;
  --ink: #102536;
  --muted: #617385;
  --line: #dbe7ee;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(31, 99, 152, 0.35);
  outline-offset: 3px;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  left: 20px;
  top: 16px;
  z-index: 1000;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 850;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  letter-spacing: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

h1 {
  margin-bottom: 24px;
  font-size: 72px;
  line-height: 0.98;
}

h2 {
  margin-bottom: 22px;
  font-size: 52px;
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.18;
}

p {
  color: var(--muted);
  font-size: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 15px 24px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(31, 99, 152, 0.22);
}

.btn-primary:hover {
  background: #184f7a;
}

.btn-secondary {
  border-color: rgba(31, 99, 152, 0.22);
  background: var(--white);
  color: var(--blue);
}

.btn-secondary:hover {
  border-color: var(--blue);
}

.topline {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.topline .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topline strong {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 231, 238, 0.85);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 76px;
}

.brand img {
  width: 232px;
  height: auto;
}

.menu {
  display: flex;
  gap: 26px;
  color: #33495d;
  font-size: 14px;
  font-weight: 800;
}

.menu a:hover {
  color: var(--blue);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
}

.phone svg,
.menu-toggle svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 0;
}

.hero,
.page-hero {
  overflow: hidden;
  background: linear-gradient(135deg, #f3fbfb 0%, #ffffff 58%, #f7f1e8 100%);
}

.hero {
  padding: 92px 0 70px;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 68px;
  align-items: center;
}

.hero-text .lead,
.page-hero-copy .lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: #41576a;
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  color: #40556a;
  font-size: 14px;
  font-weight: 780;
}

.hero-proof span::before {
  margin-right: 8px;
  color: var(--blue);
  content: "✓";
  font-weight: 950;
}

.photo-frame {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(11, 47, 74, 0.08);
  border-radius: 34px;
  background: var(--light);
  box-shadow: 0 34px 90px rgba(11, 47, 74, 0.14);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.photo-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(11, 47, 74, 0.02), rgba(11, 47, 74, 0.24));
  pointer-events: none;
}

.visual-badge {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 1;
  max-width: calc(100% - 48px);
  border: 1px solid rgba(219, 231, 238, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(11, 47, 74, 0.12);
  color: var(--navy);
  padding: 16px 18px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.photo-frame .visual-badge {
  display: none;
}

.visual-badge small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.visual-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.visual-stat {
  border: 1px solid rgba(219, 231, 238, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  padding: 14px 15px;
  font-size: 13px;
}

.visual-stat strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 18px;
}

.intro {
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.intro-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.principles {
  border-top: 1px solid var(--line);
}

.principle {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.principle b {
  color: var(--navy);
}

.principle p {
  margin: 0;
}

.portfolio,
.detail-section,
.service-overview,
.legal-section {
  padding: 92px 0;
  background: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head-full {
  grid-template-columns: 1fr;
}

.section-head p {
  max-width: 660px;
  margin-bottom: 0;
  font-size: 18px;
}

.portfolio-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  border-top: 1px solid var(--line);
}

.portfolio-col {
  padding-top: 34px;
}

.portfolio-col h3 {
  margin-bottom: 22px;
  font-size: 30px;
}

.service-row {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 18px 42px 18px 0;
  border-bottom: 1px solid var(--line);
}

.service-row::after {
  position: absolute;
  right: 0;
  top: 18px;
  color: var(--blue);
  content: "→";
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.service-row:hover::after {
  color: var(--navy);
  transform: translateX(2px);
}

.service-row-title {
  color: #19354c;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.service-row em {
  max-width: 260px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
  text-align: left;
}

.service-row:hover .service-row-title,
.service-card:hover h3 {
  color: var(--blue);
}

.process {
  padding: 92px 0;
  background: linear-gradient(180deg, #f7fbfc 0%, #ffffff 100%);
}

.process-wrap {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  align-items: start;
}

.timeline {
  padding-left: 34px;
  border-left: 1px solid var(--line);
  counter-reset: step;
}

.timeline-item {
  position: relative;
  padding: 0 0 36px;
  counter-increment: step;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  position: absolute;
  left: -51px;
  top: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px #f7fbfc;
  color: var(--white);
  content: counter(step);
  font-size: 13px;
  font-weight: 900;
}

.timeline-item p {
  max-width: 680px;
  margin-bottom: 0;
}

.about {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--navy);
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}

.about .eyebrow {
  color: #9fd8df;
}

.about h2 {
  color: var(--white);
}

.about p {
  color: rgba(255, 255, 255, 0.76);
}

.signature {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-weight: 800;
}

.about-visual {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: linear-gradient(145deg, #092941, #174766);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  padding: 38px;
}

.company-card {
  display: flex;
  height: 100%;
  min-height: 354px;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid rgba(219, 231, 238, 0.92);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 24px 62px rgba(4, 24, 39, 0.2);
  color: var(--ink);
  padding: 32px;
}

.company-logo {
  width: min(290px, 100%);
  height: auto;
}

.company-details {
  display: block;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.company-details strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.company-details address {
  margin: 16px 0 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.company-links {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.company-links a {
  color: var(--blue);
  font-weight: 800;
}

.company-links a:hover {
  color: var(--navy);
}

.check {
  background: var(--white);
  padding: 92px 0;
}

.check-band,
.contact-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--light), #ffffff 52%, var(--sand));
  padding: 58px 0;
}

.check-inner,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.check-inner h2,
.contact-grid h2 {
  margin-bottom: 12px;
  font-size: 46px;
}

.check-inner p,
.contact-grid p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 18px;
}

.contact-direct {
  margin-top: 22px;
}

.contact-direct strong {
  color: var(--navy);
}

.contact-form {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 2px 0 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.field.full {
  grid-column: 1 / -1;
}

.field:nth-child(odd):not(.full) {
  padding-right: 18px;
}

.field:nth-child(even):not(.full) {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}

.field label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a9aab;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(31, 99, 152, 0.62);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(31, 99, 152, 0.1);
}

.form-note {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.privacy-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  padding: 18px 0;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.privacy-check a {
  color: var(--blue);
  font-weight: 850;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.contact-form .btn {
  width: 100%;
  border: 0;
  margin-top: 22px;
}

.page-hero {
  padding: 72px 0 64px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--blue);
}

.breadcrumbs a + a::before,
.breadcrumbs span::before {
  margin-right: 8px;
  color: var(--muted);
  content: "/";
}

.page-hero h1 {
  font-size: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 188px;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(11, 47, 74, 0.08);
  padding: 22px 62px 22px 22px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  border-color: rgba(31, 99, 152, 0.35);
  box-shadow: 0 24px 60px rgba(11, 47, 74, 0.11);
  transform: translateY(-2px);
}

.service-card::after {
  position: absolute;
  right: 20px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--blue);
  content: "→";
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.service-card:hover::after {
  color: var(--navy);
  transform: translateX(2px);
}

.service-card small {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p {
  margin-bottom: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.lead-panel {
  position: sticky;
  top: 110px;
  border-left: 1px solid var(--line);
  padding-left: 32px;
}

.lead-panel h2 {
  font-size: 40px;
}

.info-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.info-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.info-item b {
  color: var(--navy);
}

.info-item p {
  margin: 0;
}

.highlight-panel {
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--light);
  padding: 24px;
}

.highlight-panel h3 {
  margin-bottom: 10px;
}

.highlight-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.highlight-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.highlight-panel li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--blue);
  content: "✓";
  font-weight: 950;
}

.bu-link-band {
  padding: 92px 0;
  background: var(--white);
}

.bu-link-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  box-shadow: 0 28px 72px rgba(11, 47, 74, 0.18);
  padding: 42px;
}

.bu-link-card .eyebrow {
  color: #b7e6ed;
}

.bu-link-card h2 {
  color: var(--white);
  font-size: 44px;
}

.bu-link-card p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.bu-link-card .btn {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 16px 36px rgba(4, 24, 39, 0.18);
}

.bu-link-card .btn:hover {
  background: #f4fbfb;
}

.legal-hero {
  padding: 82px 0 64px;
  background: linear-gradient(135deg, #f3fbfb 0%, #ffffff 60%, #f7f1e8 100%);
}

.legal-hero h1 {
  max-width: 920px;
  font-size: 58px;
}

.legal-hero p {
  max-width: 760px;
  font-size: 18px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
  scroll-margin-top: 110px;
}

footer {
  background: #082941;
  color: var(--white);
  padding: 54px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 54px;
  margin-bottom: 38px;
}

footer img {
  width: 220px;
  margin-bottom: 18px;
  border-radius: 0;
  background: transparent;
  filter: brightness(0) invert(1);
  padding: 0;
}

footer p,
footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

footer h4 {
  margin: 0 0 14px;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 44px;
  }

  .menu {
    gap: 16px;
    font-size: 13px;
  }

  .brand img {
    width: 210px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .menu {
    display: none;
  }

  .nav {
    justify-content: flex-start;
    gap: 12px;
  }

  .brand {
    margin-right: auto;
  }

  .menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    z-index: 30;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 24px 58px rgba(11, 47, 74, 0.16);
    padding: 8px;
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    border-bottom: 1px solid var(--line);
    padding: 13px 12px;
  }

  .menu a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: grid;
    order: 3;
  }

  .nav-cta {
    order: 2;
  }

  .nav-cta .btn {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .intro-grid,
  .section-head,
  .process-wrap,
  .about-grid,
  .check-inner,
  .contact-grid,
  .detail-grid,
  .bu-link-card,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero {
    padding: 64px 0 48px;
  }

  .page-hero {
    padding: 56px 0 48px;
  }

  .photo-frame {
    min-height: 360px;
    border-radius: 24px;
  }

  .visual-stats {
    grid-template-columns: 1fr;
  }

  .portfolio-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .principle,
  .info-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 2px 0 0;
  }

  .field:nth-child(odd):not(.full),
  .field:nth-child(even):not(.full) {
    border-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .lead-panel {
    position: static;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    padding: 0 20px;
  }

  .topline .container {
    display: block;
    text-align: center;
  }

  .topline span:last-child {
    display: none;
  }

  .brand img {
    width: 205px;
  }

  .nav {
    min-height: 68px;
  }

  h1,
  .page-hero h1,
  .legal-hero h1 {
    font-size: 40px;
  }

  h2,
  .check-inner h2,
  .contact-grid h2,
  .lead-panel h2,
  .bu-link-card h2 {
    font-size: 34px;
  }

  .hero-text .lead,
  .page-hero-copy .lead {
    font-size: 18px;
  }

  .hero-actions .btn,
  .page-actions .btn,
  .check-inner .btn,
  .bu-link-card .btn {
    width: 100%;
  }

  .service-row {
    gap: 4px;
    padding-right: 36px;
  }

  .service-row em {
    text-align: left;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 18px 58px 18px 18px;
  }

  .service-card::after {
    right: 16px;
    top: 16px;
    width: 32px;
    height: 32px;
  }

  .service-card small {
    margin-bottom: 8px;
  }

  .service-card h3 {
    margin-bottom: 6px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 1.45;
  }

  .intro,
  .portfolio,
  .process,
  .about,
  .check,
  .detail-section,
  .service-overview,
  .bu-link-band,
  .legal-section {
    padding: 68px 0;
  }

  .bu-link-card {
    border-radius: 20px;
    padding: 24px;
  }
}
