:root {
  --ink: #17202a;
  --muted: #69717c;
  --paper: #f7f4ee;
  --white: #ffffff;
  --charcoal: #101820;
  --navy: #12263a;
  --teal: #1f6f78;
  --gold: #b68a3a;
  --line: rgba(23, 32, 42, 0.14);
  --shadow: 0 18px 50px rgba(16, 24, 32, 0.12);
  --radius: 8px;
  font-family: "Inter", "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 238, 0.92);
  border-bottom: 1px solid rgba(23, 32, 42, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-name {
  display: grid;
  line-height: 1.15;
}

.brand-name strong {
  font-size: 17px;
  letter-spacing: 0;
}

.brand-name span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #344252;
  font-size: 14px;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--white);
  font-weight: 650;
  white-space: nowrap;
}

.button:hover {
  filter: brightness(0.96);
}

.button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.54);
  color: var(--white);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(16, 24, 32, 0.92), rgba(16, 24, 32, 0.58) 48%, rgba(16, 24, 32, 0.2)), url("../images/hero-conference.svg");
  background-size: cover;
  background-position: center;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 110px 0 68px;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 18px 0 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 900px;
  margin-top: 72px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.hero-meta div {
  padding: 22px;
  background: rgba(16, 24, 32, 0.34);
}

.hero-meta strong {
  display: block;
  font-size: 28px;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  padding: 92px 0;
}

.section.white {
  background: var(--white);
}

.section.dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-head h2 {
  max-width: 620px;
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
}

.section-head p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

.dark .section-head p,
.dark .muted {
  color: rgba(255, 255, 255, 0.7);
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.case-card,
.advantage,
.contact-panel,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  min-height: 300px;
  padding: 28px;
}

.service-card small {
  color: var(--gold);
  font-weight: 700;
}

.service-card h3 {
  margin: 20px 0 12px;
  font-size: 24px;
}

.service-card p {
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tags span {
  padding: 6px 10px;
  border: 1px solid rgba(31, 111, 120, 0.2);
  border-radius: 999px;
  color: #31545b;
  background: rgba(31, 111, 120, 0.07);
  font-size: 13px;
}

.visual {
  min-height: 390px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}

.visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.about-visual img {
  aspect-ratio: 3 / 2;
  object-position: center;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

.feature b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(182, 138, 58, 0.12);
  color: var(--gold);
}

.feature h3 {
  margin: 0 0 4px;
  font-size: 19px;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.case-card {
  overflow: hidden;
}

.case-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #d8d3ca;
}

.case-card .case-body {
  padding: 22px;
}

.case-card h3 {
  margin: 0 0 8px;
}

.case-card p {
  margin: 0;
  color: var(--muted);
}

.case-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card.detailed { display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.case-card.detailed:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.case-card.detailed .case-body { flex: 1; }
.business-grid { grid-template-columns: repeat(5, 1fr); }

.faq-section { background: #f3efe7; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.faq-item { padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: 0 10px 26px rgba(16, 24, 32, .06); }
.faq-item h3 { margin: 0 0 9px; color: var(--ink); font-size: 18px; line-height: 1.35; }
.faq-item p { margin: 0; color: var(--muted); line-height: 1.75; }

.case-meta { color: var(--teal); font-size: 12px; font-weight: 700; letter-spacing: .08em; }

.inquiry-section { padding: 64px 0; background: var(--paper); }
.inquiry-card { max-width: 1040px; margin: 0 auto; padding: 30px 34px; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 32px rgba(16, 24, 32, .08); }
.inquiry-heading { display: flex; gap: 24px; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.inquiry-heading h2 { margin: 5px 0; font-size: clamp(24px, 3vw, 34px); line-height: 1.2; }
.inquiry-heading p { margin: 0; color: var(--muted); font-size: 14px; }
.inquiry-badge { display: inline-block; padding: 3px 8px; border-radius: 3px; color: var(--white); background: var(--teal); font-size: 12px; font-weight: 700; }
.lead-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 18px; align-items: start; }
.lead-form label,
.city-field,
.date-field { display: grid; min-width: 0; gap: 7px; color: #3e4752; font-size: 13px; font-weight: 650; }
.lead-form input, .lead-form select, .lead-form textarea { box-sizing: border-box; width: 100%; height: 46px; min-height: 46px; max-height: 46px; padding: 10px 12px; border: 1px solid #c9cdd1; border-radius: 6px; color: var(--ink); background: #fff; font: inherit; font-size: 14px; font-weight: 400; }
.lead-form small { color: var(--muted); font-size: 12px; font-weight: 400; }
.field-help, .locate-status { min-height: 17px; margin: 0; line-height: 1.4; }
.form-trap { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.field-label-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.locate-city { display: inline-flex; align-items: center; gap: 5px; padding: 0; border: 0; color: var(--teal); background: transparent; font: inherit; font-size: 12px; font-weight: 700; cursor: pointer; }
.locate-city:hover { color: var(--navy); }
.locate-city:disabled { cursor: wait; opacity: .58; }
.locate-status[data-state="success"] { color: var(--teal); }
.locate-status[data-state="error"] { color: #b42318; }
.city-field { position: relative; grid-column: 1 / -1; }
.date-field { position: relative; }
.city-picker-trigger,
.date-picker-trigger { display: flex; box-sizing: border-box; width: 100%; height: 46px; min-height: 46px; max-height: 46px; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px; border: 1px solid #c9cdd1; border-radius: 6px; color: #767d86; background: #fff; font: inherit; font-size: 14px; font-weight: 400; text-align: left; cursor: pointer; }
.city-picker-trigger.has-value { color: var(--ink); }
.date-picker-trigger.has-value { color: var(--ink); }
.city-picker-trigger b,
.date-picker-trigger b { flex: 0 0 auto; color: var(--muted); font-size: 18px; font-weight: 400; }
.city-picker-trigger:focus,
.date-picker-trigger:focus { outline: 2px solid rgba(31,111,120,.25); border-color: var(--teal); }
.city-picker-panel { position: absolute; z-index: 5; top: calc(100% - 17px); left: 0; width: calc(200% + 18px); max-height: 430px; overflow: auto; padding: 16px 18px 18px; border: 1px solid #d8dce0; border-radius: 6px; background: #fff; box-shadow: 0 18px 42px rgba(16,24,32,.18); }
.city-picker-panel[hidden] { display: none; }
.city-picker-heading { display: flex; align-items: center; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid #e2e5e8; }
.city-picker-heading strong { color: #2575d9; font-size: 18px; }
.city-picker-heading button { width: 30px; height: 30px; border: 0; color: var(--muted); background: transparent; font-size: 25px; cursor: pointer; }
.city-tabs { display: flex; align-items: center; gap: 10px; overflow-x: auto; padding: 12px 0 10px; scrollbar-width: thin; }
.city-tab { flex: 0 0 auto; padding: 4px 8px; border: 0; border-radius: 4px; color: #60656c; background: transparent; font: inherit; font-size: 15px; cursor: pointer; }
.city-tab.active { color: #fff; background: #2575d9; }
.city-panel-content { display: grid; gap: 7px; }
.city-region { display: grid; grid-template-columns: 62px minmax(0, 1fr); align-items: start; gap: 8px; }
.city-region > strong { padding: 5px 0; color: #f0a000; font-size: 14px; }
.city-options { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 3px 8px; }
.city-option { min-width: 0; padding: 5px 4px; overflow: visible; border: 0; border-radius: 3px; color: #383d43; background: transparent; font: inherit; font-size: 14px; line-height: 1.25; text-align: left; white-space: normal; cursor: pointer; }
.city-option:hover,
.city-option:focus { color: #2575d9; background: #eef5ff; outline: none; }
.date-picker-panel { position: fixed; z-index: 112; top: 50%; right: auto; left: 50%; width: min(340px, calc(100vw - 40px)); max-height: calc(100vh - 48px); overflow: auto; padding: 12px; transform: translate(-50%, -50%); border: 1px solid #d8dce0; border-radius: 10px; background: #fff; box-shadow: 0 18px 42px rgba(16,24,32,.2); }
.date-picker-panel[hidden] { display: none; }
.date-picker-header { display: grid; grid-template-columns: 38px 1fr 38px; align-items: center; gap: 8px; margin-bottom: 8px; }
.date-picker-header strong { color: var(--ink); font-size: 16px; text-align: center; }
.date-picker-header button { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 7px; color: var(--ink); background: #fff; font-size: 23px; line-height: 1; cursor: pointer; }
.date-picker-header button:hover,
.date-picker-header button:focus { border-color: var(--teal); color: var(--teal); outline: none; }
.date-weekdays,
.date-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px; }
.date-weekdays { margin-bottom: 5px; color: var(--muted); font-size: 12px; text-align: center; }
.date-weekdays span { padding: 6px 0; }
.date-day { display: grid; aspect-ratio: 1; min-width: 0; place-items: center; border: 0; border-radius: 7px; color: var(--ink); background: #f6f7f8; font: inherit; font-size: 13px; font-weight: 600; cursor: pointer; }
.date-day:hover,
.date-day:focus { color: #fff; background: var(--teal); outline: none; }
.date-day.outside-month { color: #a5abb2; background: #fff; }
.date-day.today { box-shadow: inset 0 0 0 2px var(--gold); }
.date-day.selected { color: #fff; background: var(--teal); box-shadow: none; }
.date-day:disabled { color: #c7cbd0; background: #fafafa; cursor: not-allowed; text-decoration: line-through; }
.date-picker-actions { display: flex; justify-content: flex-end; gap: 6px; margin-top: 9px; }
.date-picker-actions button { min-width: 58px; min-height: 32px; padding: 5px 8px; border: 1px solid var(--line); border-radius: 6px; color: var(--teal); background: #fff; font: inherit; font-size: 12px; font-weight: 700; cursor: pointer; }
.date-picker-actions [data-date-undecided] { margin-right: auto; color: var(--gold); }
.date-picker-actions button:hover { border-color: var(--teal); }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: 2px solid rgba(31,111,120,.25); border-color: var(--teal); }
.form-wide { grid-column: 1 / -1; }
.checkbox { display: flex !important; grid-template-columns: 22px auto; align-items: center; gap: 7px !important; font-size: 14px !important; }
.checkbox input { width: 20px; height: 20px; min-height: 20px; max-height: 20px; padding: 0; }
.service-checkbox { align-self: end; min-height: 46px; line-height: 1.35; }
.form-action { display: grid !important; gap: 8px; margin-top: 4px; }
.lead-submit { width: 100%; min-height: 46px; border: 0; background: var(--gold); font-size: 16px; cursor: pointer; }
.lead-submit:disabled { cursor: wait; opacity: .7; }
.form-status { min-height: 20px; margin: 0; color: var(--teal); font-weight: 650; text-align: center; }
.form-status[data-state="error"] { color: #b42318; }
.form-status[data-state="pending"] { color: var(--muted); }
.form-action small { width: 100%; color: var(--muted); }

.consult-trigger { cursor: pointer; font: inherit; }
.consult-modal[hidden] { display: none; }
.consult-modal { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 24px; }
.consult-backdrop { position: absolute; inset: 0; background: rgba(12,17,23,.66); backdrop-filter: blur(3px); }
.consult-panel { position: relative; width: min(840px, 100%); max-height: calc(100vh - 48px); overflow: auto; padding: 30px; border-top: 4px solid var(--gold); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.consult-panel h2 { margin: 6px 0; font-size: 28px; line-height: 1.2; }
.consult-panel > p { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.consult-close { position: absolute; top: 10px; right: 14px; border: 0; background: transparent; color: var(--muted); font-size: 30px; cursor: pointer; }
.mobile-lead-bar { display: none; }

.advantage {
  padding: 24px;
}

.advantage strong {
  color: var(--gold);
  font-size: 22px;
}

.advantage h3 {
  margin: 14px 0 8px;
}

.advantage p {
  margin: 0;
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-step {
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}

.process-step strong {
  color: var(--gold);
}

.process-step h3 {
  margin: 12px 0 6px;
}

.process-step p {
  margin: 0;
}

.page-hero {
  padding: 94px 0 76px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(16, 24, 32, 0.96), rgba(31, 111, 120, 0.74)), url("../images/hero-conference.svg");
  background-size: cover;
  background-position: center;
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.content-block {
  max-width: 820px;
}

.content-block h2 {
  margin-top: 0;
  font-size: 34px;
  line-height: 1.25;
}

.content-block p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
}

.contact-panel {
  padding: 30px;
}

.contact-panel h3 {
  margin-top: 0;
}

.contact-line {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(23, 32, 42, 0.09);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-address > div {
  min-width: 0;
}

.map-navigation {
  display: inline-flex;
  margin-top: 7px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

.map-navigation:hover {
  color: var(--navy);
}

.service-account-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 111, 120, 0.1), rgba(199, 148, 55, 0.08)),
    #fff;
}

.service-account-copy {
  max-width: 620px;
}

.service-account-copy h3 {
  margin: 10px 0 12px;
  font-size: 28px;
}

.service-account-copy p {
  margin: 0 0 24px;
  color: var(--muted);
}

.service-qr-wrap {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.service-qr-image {
  display: block;
  width: 180px;
  max-width: 100%;
  aspect-ratio: 1;
  padding: 8px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.service-qr-wrap span {
  color: var(--muted);
  font-size: 13px;
}

.team-section {
  overflow: hidden;
}

.team-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.team-photo {
  grid-column: span 2;
  min-width: 0;
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e9ecef;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(18, 28, 38, 0.12);
}

.team-photo.featured {
  grid-column: span 3;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.team-photo:hover img {
  transform: scale(1.025);
}

.cta {
  padding: 76px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--charcoal), #1f6f78);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.68);
  background: #0c1117;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-consult {
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.footer-consult:hover {
  color: #fff;
}

@media (max-width: 900px) {
  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .nav {
    height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .nav .button {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero .container {
    padding: 62px 0 30px;
  }

  .hero h1,
  .page-hero h1 {
    margin: 12px 0;
    font-size: 36px;
    line-height: 1.12;
  }

  .hero p,
  .page-hero p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }

  .hero-meta div {
    padding: 14px;
  }

  .hero-meta strong {
    font-size: 22px;
  }

  .page-hero {
    padding: 52px 0 42px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .process,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .case-showcase,
  .business-grid { grid-template-columns: 1fr 1fr; }

  .section-head,
  .cta-inner {
    display: grid;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 24px;
  }

  .section-head h2,
  .content-block h2 {
    font-size: 29px;
  }

  .section-head p,
  .content-block p,
  .service-card p,
  .case-card p,
  .feature p,
  .process-step p {
    font-size: 14px;
    line-height: 1.62;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    gap: 16px;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .service-card h3 {
    margin: 12px 0 8px;
    font-size: 21px;
  }

  .case-card img {
    height: 190px;
  }

  .case-card .case-body,
  .advantage,
  .process-step,
  .contact-panel {
    padding: 20px;
  }

  .cta {
    padding: 50px 0;
  }

  .footer {
    padding: 28px 0;
  }

  .inquiry-card { padding: 24px 20px; }
  .inquiry-heading { display: grid; }
  .lead-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-wide,
  .city-field { grid-column: 1 / -1; }
  .consult-modal { place-items: end center; padding: 10px 10px 0; }
  .consult-panel { width: 100%; max-height: calc(100dvh - 10px); padding: 22px 16px 18px; border-radius: 14px 14px 0 0; }
  .consult-panel h2 { padding-right: 24px; font-size: 23px; }
  .consult-panel > p { margin-bottom: 13px; line-height: 1.5; }
  .lead-form { gap: 10px 8px; }
  .city-picker-panel { position: fixed; z-index: 110; top: auto; right: 10px; bottom: calc(62px + env(safe-area-inset-bottom)); left: 10px; width: auto; max-height: min(68dvh, 560px); padding: 14px; border-radius: 12px; }
  .date-picker-panel { position: fixed; z-index: 111; top: auto; right: 10px; bottom: calc(62px + env(safe-area-inset-bottom)); left: 10px; width: auto; max-width: 420px; max-height: calc(100dvh - 86px); margin: 0 auto; padding: 12px; transform: none; border-radius: 12px; }
  .city-options { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 3px 5px; }
  .city-region { grid-template-columns: 54px minmax(0, 1fr); }
  .lead-form input,
  .lead-form select,
  .lead-form textarea,
  .city-picker-trigger,
  .date-picker-trigger { height: 44px; min-height: 44px; max-height: 44px; padding: 8px 10px; font-size: 13px; }
  .checkbox input { width: 20px; height: 20px; min-height: 20px; max-height: 20px; padding: 0; }
  .service-checkbox { min-height: 44px; font-size: 12px !important; }
  .form-action { gap: 9px; }
  .lead-submit { width: 100%; }

  .mobile-lead-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 9px;
    padding: 8px max(14px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-right));
    background: rgba(247, 244, 238, .97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 28px rgba(16, 24, 32, .12);
    backdrop-filter: blur(14px);
  }

  .mobile-lead-bar a,
  .mobile-lead-bar button {
    display: grid;
    min-height: 46px;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 7px;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-lead-bar a {
    color: var(--gold);
    background: var(--white);
  }

  .mobile-lead-bar button {
    color: var(--white);
    background: var(--gold);
    cursor: pointer;
  }

  .team-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-photo,
  .team-photo.featured { grid-column: span 1; }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand-name span {
    font-size: 10px;
  }

  .eyebrow { font-size: 11px; letter-spacing: .14em; }

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

  .hero-meta span { font-size: 12px; }

  .section { padding: 42px 0; }

  .section-head h2,
  .content-block h2 { font-size: 27px; }

  .contact-line { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 8px; padding: 11px 0; }

  .service-account-card { padding: 20px; }

  .city-options { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .city-option { font-size: 13px; }
  .consult-panel { padding-right: 12px; padding-left: 12px; }
  .lead-form { gap: 9px 7px; }
  .lead-form label,
  .city-field,
  .date-field { gap: 5px; font-size: 12px; }
  .lead-form small { font-size: 10px; }
  .date-picker-header { grid-template-columns: 36px 1fr 36px; }
  .date-picker-header button { width: 34px; height: 34px; }
  .date-day { font-size: 14px; }

  .case-showcase,
  .business-grid { grid-template-columns: 1fr; }

  .service-account-card {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .service-account-copy {
    display: grid;
    justify-items: center;
  }

  .team-gallery { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { padding: 20px; }
}
