:root {
  --bg: #f7f4ef;
  --bg-soft: #fcfaf7;
  --surface: #ffffff;
  --surface-soft: #f5eee5;
  --line: rgba(123, 93, 58, 0.16);
  --line-strong: rgba(123, 93, 58, 0.24);
  --text: #152030;
  --muted: #677487;
  --accent: #db7d23;
  --accent-strong: #bf6716;
  --accent-soft: #f7e6d3;
  --header: #12181f;
  --footer: #141a22;
  --shadow: 0 18px 44px rgba(22, 31, 46, 0.08);
  --shadow-soft: 0 10px 24px rgba(22, 31, 46, 0.06);
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

section[id],
main[id] {
  scroll-margin-top: 24px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top center, rgba(219, 125, 35, 0.08), transparent 34%),
    linear-gradient(180deg, #fbf8f4 0%, #ffffff 260px);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 24, 31, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand img {
  width: 74px;
  height: 74px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.24);
}

.brand-text {
  font-size: 1rem;
}

.brand-dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a,
.nav-link-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  font-weight: 500;
  transition: color 0.18s ease;
}

.nav-link-button {
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-links a::after,
.nav-link-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: rgba(219, 125, 35, 0.9);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-link-button:hover,
.nav-link-button:focus-visible {
  color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-link-button:hover::after,
.nav-link-button:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #eb912f, var(--accent));
  color: #ffffff;
  font-weight: 750;
  box-shadow: 0 16px 34px rgba(219, 125, 35, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(219, 125, 35, 0.28);
  background: linear-gradient(180deg, #ef9837, var(--accent-strong));
}

.btn-header {
  min-width: 174px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 8px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav-backdrop {
  display: none;
}

.mobile-nav-panel {
  display: none;
}

.btn-ghost,
.contact-link-button {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible,
.contact-link-button:hover,
.contact-link-button:focus-visible {
  background: var(--bg-soft);
  color: var(--text);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

main {
  display: block;
}

section {
  padding: 64px 0;
}

.hero {
  padding: 42px 0 54px;
}

.hero-layout {
  display: grid;
  gap: 28px;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.panel-header img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(21, 32, 48, 0.12);
}

.panel-kicker,
.eyebrow {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.panel-header h2,
.section-head h2,
.contact-modal-head h2,
.contact-copy h2 {
  margin: 0;
  font-size: 1.82rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.panel-intro {
  max-width: 460px;
  margin: 0;
  color: #58677c;
  font-size: 1.12rem;
  line-height: 1.55;
}

.slider-shell {
  display: grid;
  gap: 16px;
}

.hero-slider {
  position: relative;
  min-height: 340px;
  aspect-ratio: 16 / 5;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #f3e7d8, #e9ded0);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  filter: saturate(0.96);
  transition:
    opacity 0.95s ease,
    transform 6.2s ease,
    filter 0.95s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
  z-index: 2;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(18, 24, 31, 0.34);
  backdrop-filter: blur(10px);
}

.slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
  transform: scale(1);
  transition: background 0.28s ease, transform 0.28s ease, opacity 0.28s ease;
}

.slider-dots span.is-active {
  background: #ffffff;
  transform: scale(1.18);
}

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

.slider-thumb {
  position: relative;
  min-height: 102px;
  aspect-ratio: 3 / 1;
  border-radius: 8px;
  border: 1px solid var(--line);
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
  opacity: 0.7;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    transform 0.25s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.slider-thumb::after {
  content: "";
  position: absolute;
  inset: auto 10px 10px;
  height: 3px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 5.6s linear;
}

.slider-thumb:hover,
.slider-thumb:focus-visible,
.slider-thumb.is-active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(219, 125, 35, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 14px 28px rgba(22, 31, 46, 0.1);
}

.slider-thumb.is-active::after {
  transform: scaleX(1);
}

.asset-1 {
  background-image: url("slider/slide-1.jpg");
}

.asset-2 {
  background-image: url("slider/slide-2.jpg");
}

.asset-3 {
  background-image: url("slider/slide-3.jpg");
}

.asset-4 {
  background-image: url("slider/slide-4.jpg");
}

.asset-5 {
  background-image: url("slider/slide-5.jpg");
}

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

.mini-card,
.trust-item,
.service-card,
.process-step,
.detail-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.mini-card,
.trust-item,
.service-card,
.process-step {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.mini-card:hover,
.trust-item:hover,
.service-card:hover,
.process-step:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.mini-card {
  padding: 18px;
  min-height: 192px;
}

.mini-card h3,
.service-card h3,
.process-step h3,
.detail-card h4,
.phone-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.28;
}

.mini-card p,
.service-card p,
.trust-item p,
.process-step p,
.detail-card p,
.section-head p,
.lead,
.contact-copy p,
.contact-modal-head p,
.phone-card p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #fffdfa, #f8efe5);
  border: 1px solid rgba(219, 125, 35, 0.24);
  color: var(--accent-strong);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-copy {
  max-width: 860px;
  padding: 0 6px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: 1.88rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.lead {
  max-width: 880px;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-points li {
  position: relative;
  padding: 18px 18px 18px 42px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 25px;
  width: 10px;
  height: 10px;
  border-radius: 8px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(219, 125, 35, 0.14);
}

.trust-band {
  padding-top: 10px;
}

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

.trust-item,
.service-card,
.process-step,
.detail-card,
.phone-card {
  padding: 24px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.card-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.card-meta .card-icon {
  margin-bottom: 0;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
}

.interventions {
  padding-top: 54px;
}

.intervention-browser {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 248, 243, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.intervention-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.intervention-tab {
  border: 1px solid transparent;
  background: #f4eadf;
  color: #7d5a37;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.25;
  text-align: center;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.intervention-tab:hover,
.intervention-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(219, 125, 35, 0.24);
}

.intervention-tab.is-active {
  background: linear-gradient(180deg, #eb912f, var(--accent));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(219, 125, 35, 0.2);
}

.intervention-stage {
  display: grid;
  gap: 18px;
}

.intervention-stage-content {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.intervention-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #f3e7d8, #eadfce);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s ease,
    border-color 0.34s ease;
}

.intervention-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    clip-path 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.68s ease,
    filter 0.78s ease;
  clip-path: inset(0 0 0 0 round 0);
}

.intervention-hero img.is-iris-enter {
  clip-path: inset(0 50% 0 50% round 8px);
  opacity: 0.26;
  transform: scale(1.06);
  filter: blur(4px) saturate(0.9);
}

.intervention-hero-clone {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition:
    clip-path 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.68s ease,
    filter 0.78s ease;
  clip-path: inset(0 0 0 0 round 0);
}

.intervention-hero-clone.is-iris-leave {
  clip-path: inset(0 50% 0 50% round 8px);
  opacity: 0.18;
  transform: scale(0.94);
  filter: blur(4px) saturate(0.9);
}

.intervention-hero.is-fallback img {
  object-fit: contain;
  padding: 28px;
  background: linear-gradient(135deg, #f8f3ec, #f0e5d7);
}

.intervention-hero-clone.is-fallback {
  object-fit: contain;
  padding: 28px;
  background: linear-gradient(135deg, #f8f3ec, #f0e5d7);
}

.detail-card-summary {
  padding: 28px 30px;
}

.detail-card-summary h3 {
  margin: 0 0 10px;
  font-size: 1.74rem;
  line-height: 1.2;
}

.intervention-cards {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.95fr;
  gap: 16px;
}

.detail-card h4 {
  font-size: 1.16rem;
}

.detail-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.detail-card li + li {
  margin-top: 10px;
}

.detail-card-accent {
  background: linear-gradient(180deg, #fff8ef, #ffffff);
  border-color: rgba(219, 125, 35, 0.2);
}

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

.contact-section {
  padding-top: 54px;
  padding-bottom: 74px;
}

.contact-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  background: linear-gradient(135deg, #fff9f1, #ffffff);
  border: 1px solid rgba(219, 125, 35, 0.16);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.contact-copy {
  max-width: 700px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 31, 0.56);
  backdrop-filter: blur(6px);
}

.contact-modal-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: 0 34px 90px rgba(16, 24, 40, 0.24);
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
}

.contact-modal-head {
  padding-right: 48px;
}

.contact-modal-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 20px;
  padding: 6px;
  border-radius: 8px;
  background: #f5eee5;
}

.contact-switch-btn {
  border: 0;
  padding: 10px 16px;
  border-radius: 8px;
  background: transparent;
  color: #7d5a37;
  font-weight: 700;
}

.contact-switch-btn.is-active {
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 6px 16px rgba(22, 31, 46, 0.08);
}

.contact-modal-panel {
  display: none;
}

.contact-modal-panel.is-active {
  display: block;
}

.request-builder {
  display: grid;
  gap: 20px;
}

.request-group {
  display: grid;
  gap: 12px;
}

.request-label {
  margin: 0;
  font-weight: 750;
  color: var(--text);
}

.request-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.request-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 14px 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #6b5a45;
  font-size: 0.97rem;
  font-weight: 700;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.request-option::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 1.5px solid rgba(219, 125, 35, 0.26);
  border-radius: 4px;
  background: #fff8ef;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.request-option:hover,
.request-option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(219, 125, 35, 0.3);
  box-shadow: 0 10px 22px rgba(22, 31, 46, 0.06);
}

.request-option.is-active {
  background: #fff7ee;
  color: var(--accent-strong);
  border-color: rgba(219, 125, 35, 0.34);
  box-shadow: 0 12px 24px rgba(219, 125, 35, 0.12);
}

.request-option.is-active::before {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 3px #ffffff;
}

.request-builder-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 6px;
  flex-wrap: wrap;
}

.request-note {
  margin: 0;
  color: var(--muted);
  flex: 1 1 260px;
}

.btn:disabled {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.request-summary {
  padding: 18px 18px 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff8ef, #fbf7f1);
  border: 1px solid rgba(219, 125, 35, 0.18);
}

.request-summary-eyebrow,
.request-summary-title,
.request-summary-meta {
  margin: 0;
}

.request-summary-eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.request-summary-title {
  margin-top: 8px;
  font-size: 1.08rem;
  font-weight: 760;
  color: var(--text);
}

.request-summary-meta {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-weight: 700;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #d7dde5;
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--text);
  background: #ffffff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(219, 125, 35, 0.52);
  box-shadow: 0 0 0 4px rgba(219, 125, 35, 0.12);
}

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

.form-honeypot {
  display: none;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-status {
  margin: 0;
  min-height: 24px;
  color: var(--muted);
  flex: 1 1 220px;
}

.phone-card {
  display: grid;
  justify-items: start;
  gap: 12px;
  background: linear-gradient(180deg, #ffffff, #fbf8f4);
}

.phone-card .card-icon {
  margin-bottom: 2px;
}

.phone-link {
  font-size: 1.56rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.content-page {
  padding: 42px 0 72px;
}

.page-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.page-title {
  margin: 0 0 14px;
  font-size: 1.94rem;
  line-height: 1.18;
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-card {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.page-card p,
.page-card li {
  color: var(--muted);
}

.page-card ul {
  margin: 0;
  padding-left: 18px;
}

.page-card li + li {
  margin-top: 10px;
}

.site-footer {
  padding: 34px 0;
  background: var(--footer);
  color: rgba(255, 255, 255, 0.76);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  align-items: start;
  gap: 24px;
}

.footer-brand {
  color: #ffffff;
}

.footer-brand-block {
  display: grid;
  gap: 14px;
}

.footer-description {
  margin: 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.footer-note {
  display: flex;
  align-items: center;
  gap: 0;
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  justify-content: flex-start;
  text-align: left;
  font-size: 0.95rem;
  white-space: nowrap;
}

.footer-note a {
  color: #eb912f;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .panel-grid,
  .trust-grid,
  .service-grid,
  .process-grid,
  .intervention-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .nav {
    min-height: 80px;
    padding: 10px 0;
  }

  .nav-links {
    display: none;
  }

  .btn-header {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: block;
  }

  .mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    display: block;
    background: rgba(18, 24, 31, 0.56);
    backdrop-filter: blur(4px);
  }

  .mobile-nav-panel {
    position: absolute;
    top: 88px;
    right: 12px;
    left: 12px;
    display: grid;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(16, 24, 40, 0.18);
    overflow: hidden;
  }

  .mobile-nav-panel a,
  .mobile-nav-panel button {
    width: 100%;
    padding: 16px 18px;
    border: 0;
    border-bottom: 1px solid rgba(21, 32, 48, 0.08);
    background: #ffffff;
    color: var(--text);
    text-align: left;
    font-weight: 650;
  }

  .mobile-nav-panel button:last-child,
  .mobile-nav-panel a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding-top: 26px;
  }

  .showcase-head,
  .contact-layout {
    align-items: start;
  }

  .panel-grid,
  .trust-grid,
  .service-grid,
  .process-grid,
  .intervention-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    flex-direction: column;
  }

  .request-builder-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  section {
    padding: 52px 0;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .hero-panel,
  .intervention-browser,
  .contact-layout,
  .contact-modal-dialog {
    padding: 20px;
  }

  .panel-header {
    align-items: flex-start;
  }

  .panel-header img {
    width: 82px;
    height: 82px;
  }

  .hero-slider {
    display: none;
  }

  .slider-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .slider-thumb {
    min-height: 86px;
  }

  .request-options {
    gap: 8px;
  }

  .request-option {
    gap: 8px;
    min-height: 40px;
    padding: 8px 12px 8px 10px;
    font-size: 0.91rem;
    border-radius: 8px;
  }

  .request-option::before {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }

  .panel-grid,
  .trust-grid,
  .service-grid,
  .process-grid,
  .intervention-cards {
    grid-template-columns: 1fr;
  }

  .intervention-hero {
    min-height: 124px;
    max-height: 136px;
    aspect-ratio: 16 / 6.2;
    background: #ffffff;
  }

  .intervention-hero img,
  .intervention-hero-clone {
    object-fit: contain;
    background: #ffffff;
  }

  .detail-card-accent,
  .footer-brand-block,
  .footer-note {
    grid-column: 1 / -1;
  }

  .hero-copy h1,
  .panel-header h2,
  .section-head h2,
  .detail-card-summary h3,
  .contact-copy h2,
  .contact-modal-head h2 {
    font-size: 1.62rem;
  }

  .hero-actions,
  .contact-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-ghost,
  .contact-link,
  .contact-link-button {
    width: 100%;
  }

  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .footer-note {
    font-size: 0.84rem;
  }

  .phone-link {
    font-size: 1.36rem;
  }
}

.nav-links a.active {
  color: #ff8c00; /* orange */
  font-weight: 600;
  border-bottom: 2px solid #ff8c00;
}
