:root {
  --bg: #07090d;
  --bg-2: #0d1118;
  --surface: #121821;
  --surface-2: #18212d;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f7f8fa;
  --muted: #a9b3c1;
  --soft: #d9dee6;
  --accent: #f47b20;
  --accent-2: #ffb15c;
  --radius: 14px;
  --radius-sm: 9px;
  --container: 1180px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 0%, rgba(244, 123, 32, 0.13), transparent 30rem),
    linear-gradient(180deg, #090c11 0%, var(--bg) 42%, #050609 100%);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(240px, auto) 1fr auto;
  align-items: center;
  min-height: 78px;
  gap: 28px;
  padding: 0 max(20px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(244, 123, 32, 0.06), transparent 34%),
    rgba(7, 9, 13, 0.92);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(244, 123, 32, 0.24);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 50%, rgba(244, 123, 32, 0.16), transparent 72%),
    #050609;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.brand-mark img {
  width: 44px;
  height: 44px;
  object-fit: cover;
}

.brand-text {
  min-width: 0;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-text small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 45;
  display: grid;
  min-width: 250px;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 9, 13, 0.98);
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease;
  visibility: hidden;
}

.nav-dropdown::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
  content: "";
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown a {
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: rgba(244, 123, 32, 0.12);
}

.nav a,
.header-phone {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  transition: color 160ms ease;
}

.nav a:hover,
.header-phone:hover {
  color: #fff;
}

.nav .nav-cta {
  border: 1px solid rgba(244, 123, 32, 0.44);
  border-radius: var(--radius-sm);
  background: rgba(244, 123, 32, 0.12);
  color: #fff;
  padding: 9px 14px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-left: 1px solid var(--line);
  padding-left: 20px;
  white-space: nowrap;
}

.nav .nav-cta:hover {
  border-color: rgba(244, 123, 32, 0.76);
  background: rgba(244, 123, 32, 0.2);
}

.nav-toggle {
  display: none;
}

.section-grid {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 22rem),
    linear-gradient(180deg, rgba(244, 123, 32, 0.08), transparent 28rem);
}

.hero {
  display: flex;
  min-height: calc(100vh - 78px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-layout,
.split,
.reviews-layout,
.contact-layout,
.cta-layout,
.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.hero-layout {
  padding: 72px 0;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 780px;
  color: #fff;
  font-size: clamp(42px, 5.8vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p,
.page-hero p,
.section-heading p,
.split p,
.feature-copy p {
  color: var(--muted);
  font-size: 18px;
}

.hero-copy > p:not(.section-kicker) {
  max-width: 700px;
  margin: 24px 0 0;
}

.hero-copy,
.page-hero .container,
.section-heading,
.feature-copy,
.method-copy {
  min-width: 0;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  border: 1px solid rgba(244, 123, 32, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 9px 12px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 13px 19px;
  font-size: 14px;
  font-weight: 950;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 34px rgba(244, 123, 32, 0.28);
}

.btn-primary:hover {
  background: #ff8d36;
}

.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.1) brightness(0.82);
}

.logo-hero-card {
  min-height: 430px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(244, 123, 32, 0.12), transparent 20rem),
    #050609;
}

.logo-hero-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.05) brightness(0.96);
}

.media-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 35%, rgba(7, 9, 13, 0.86)),
    linear-gradient(90deg, rgba(244, 123, 32, 0.2), transparent 45%);
}

.logo-hero-card::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(5, 6, 9, 0.18)),
    linear-gradient(90deg, rgba(244, 123, 32, 0.13), transparent 48%);
}

.media-caption {
  position: absolute;
  inset: auto 22px 22px 22px;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(7, 9, 13, 0.72);
  backdrop-filter: blur(12px);
}

.media-caption strong {
  font-size: 26px;
  line-height: 1.1;
}

.media-caption span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-panel {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(244, 123, 32, 0.17), rgba(255, 255, 255, 0.045)), var(--surface);
  box-shadow: var(--shadow);
}

.panel-topline {
  width: 94px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
}

.diagnostic-card {
  margin-top: 72px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.3);
}

.diagnostic-card span,
.diagnostic-card p,
.signal-list span {
  color: var(--muted);
}

.diagnostic-card strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
  line-height: 1.08;
}

.signal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.signal-list span {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 850;
}

.section,
.page-hero {
  padding: 94px 0;
}

.page-hero {
  border-bottom: 1px solid var(--line);
}

.section-dark {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.breadcrumbs {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.72);
  padding: 14px 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.breadcrumbs li + li::before {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.34);
  content: "/";
}

.breadcrumbs a {
  color: var(--soft);
  transition: color 160ms ease;
}

.breadcrumbs a:hover {
  color: #fff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 54px;
}

.proof-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  padding: 22px;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--accent-2);
  font-size: 26px;
  font-weight: 950;
}

.proof-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.section-heading.compact {
  margin-bottom: 0;
}

h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.8vw, 68px);
  line-height: 1.02;
}

h3 {
  margin: 0;
  color: #fff;
}

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

.service-card,
.contact-card,
.form-card,
.service-list article,
.reviews blockquote,
.metric-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
}

.service-card {
  min-height: 265px;
  padding: 26px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 123, 32, 0.65);
  background: linear-gradient(180deg, rgba(244, 123, 32, 0.12), rgba(255, 255, 255, 0.055));
}

.icon {
  display: inline-grid;
  min-width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(244, 123, 32, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(244, 123, 32, 0.14);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 950;
}

.service-card h3 {
  font-size: 22px;
}

.service-card p,
.service-list p,
.reviews p,
.footer-grid p,
.form-note {
  color: var(--muted);
}

.service-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent-2);
  font-weight: 950;
}

.related-services {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(244, 123, 32, 0.08), transparent 34rem),
    rgba(255, 255, 255, 0.015);
}

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

.related-card {
  display: grid;
  min-height: 210px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(244, 123, 32, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  padding: 24px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 123, 32, 0.62);
  background:
    linear-gradient(145deg, rgba(244, 123, 32, 0.14), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.related-card span {
  display: inline-grid;
  width: max-content;
  min-width: 48px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(244, 123, 32, 0.34);
  border-radius: var(--radius-sm);
  background: rgba(244, 123, 32, 0.13);
  padding: 0 10px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 950;
}

.related-card strong {
  margin-top: 22px;
  color: #fff;
  font-size: 22px;
  line-height: 1.12;
}

.related-card small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.feature-band {
  align-items: stretch;
}

.feature-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08) brightness(0.82);
}

.feature-copy {
  align-self: center;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
}

.service-detail-copy {
  max-width: 650px;
}

.service-detail-copy p {
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  border: 1px solid rgba(244, 123, 32, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
  padding: 13px 16px 13px 42px;
  color: var(--soft);
  font-size: 15px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 16px;
  top: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  box-shadow: 0 0 0 5px rgba(244, 123, 32, 0.13);
}

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

.detail-grid article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  padding: 28px;
}

.detail-grid h3 {
  font-size: 22px;
}

.detail-grid p {
  color: var(--muted);
}

.trust-section .section-heading {
  max-width: 900px;
}

.operations-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  margin-bottom: 22px;
}

.operations-intro {
  position: sticky;
  top: 112px;
}

.operations-intro h3 {
  max-width: 520px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;
}

.operations-intro p:not(.section-kicker) {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}

.operations-list {
  display: grid;
  gap: 14px;
}

.operations-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 123, 32, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  padding: 24px;
}

.operations-list span {
  display: inline-grid;
  min-width: 60px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(244, 123, 32, 0.32);
  border-radius: var(--radius-sm);
  background: rgba(244, 123, 32, 0.13);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 950;
}

.operations-list h4 {
  margin: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.18;
}

.operations-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.trust-grid article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 24px;
}

.trust-grid h3 {
  font-size: 19px;
  line-height: 1.2;
}

.trust-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.review-proof-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.review-proof-score {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 123, 32, 0.26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 10%, rgba(244, 123, 32, 0.22), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  padding: 32px;
  box-shadow: var(--shadow);
}

.review-proof-score span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-proof-score strong {
  display: block;
  margin-top: 18px;
  color: var(--accent-2);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.92;
}

.review-proof-score p {
  max-width: 280px;
  color: var(--soft);
  font-size: 17px;
  font-weight: 800;
}

.review-proof-copy {
  max-width: 760px;
}

.review-proof-copy h2 {
  max-width: 760px;
}

.review-proof-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

.review-theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.review-theme-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 22px;
}

.review-theme-grid h3 {
  margin: 0;
  font-size: 20px;
}

.review-theme-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

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

.package-grid article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(244, 123, 32, 0.15), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  padding: 30px;
}

.package-grid article::after {
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(244, 123, 32, 0.24);
  border-radius: 50%;
  content: "";
}

.package-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(244, 123, 32, 0.34);
  border-radius: var(--radius-sm);
  background: rgba(244, 123, 32, 0.14);
  padding: 9px 13px;
  color: var(--accent-2);
  font-size: 14px;
  font-weight: 950;
}

.package-grid h3 {
  margin-top: 26px;
  font-size: 26px;
  line-height: 1.1;
}

.package-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

.contract-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.contract-benefits article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 24px;
}

.contract-benefits h3 {
  font-size: 19px;
  line-height: 1.2;
}

.contract-benefits p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.contract-intake-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  border: 1px solid rgba(244, 123, 32, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 20%, rgba(244, 123, 32, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  padding: 26px;
  box-shadow: var(--shadow);
}

.contract-intake-panel h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.contract-intake-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contract-intake-list {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.contract-intake-list strong {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contract-intake-list ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.contract-intake-list li {
  color: var(--soft);
  font-size: 14px;
  font-weight: 850;
}

.contract-intake-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contract-intake-actions .btn {
  justify-content: center;
  white-space: nowrap;
}

.b2b-proof-heading {
  margin-top: 58px;
  margin-bottom: 24px;
}

.b2b-proof-grid {
  margin-top: 0;
}

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

.company-case-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(244, 123, 32, 0.09), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  padding: 24px;
}

.company-case-grid span {
  display: inline-grid;
  min-width: 44px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(244, 123, 32, 0.34);
  border-radius: var(--radius-sm);
  background: rgba(244, 123, 32, 0.13);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 950;
}

.company-case-grid h3 {
  margin-top: 24px;
  font-size: 22px;
  line-height: 1.12;
}

.company-case-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.company-case-grid a {
  display: inline-block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent-2);
  font-weight: 950;
}

.inline-cta-panel {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  border: 1px solid rgba(244, 123, 32, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 123, 32, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.045);
  padding: 22px;
}

.inline-cta-panel strong {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
}

.inline-cta-panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.inline-cta-panel .btn {
  flex: 0 0 auto;
}

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

.case-list-expanded {
  gap: 22px;
}

.case-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(244, 123, 32, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  padding: 28px;
}

.case-list-expanded .case-card {
  min-height: 610px;
}

.case-card-head {
  display: grid;
  gap: 20px;
  align-items: start;
  grid-template-columns: 58px 1fr;
}

.case-card-head span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(244, 123, 32, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(244, 123, 32, 0.14);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 950;
}

.case-card h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.02;
}

.case-card-body {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.case-list-expanded .case-card-body {
  gap: 14px;
}

.case-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.case-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--soft);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-list-expanded .case-card strong {
  color: var(--accent-2);
}

.case-card a {
  display: inline-block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent-2);
  font-weight: 950;
}

.method-section {
  position: relative;
  overflow: hidden;
}

.method-section::before {
  position: absolute;
  inset: 12% auto auto 0;
  width: min(42vw, 520px);
  height: 420px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(244, 123, 32, 0.16), transparent 68%);
  filter: blur(10px);
}

.method-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.method-copy {
  max-width: 560px;
}

.method-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

.method-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.method-points span {
  display: flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid rgba(244, 123, 32, 0.22);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
  padding: 12px 14px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 850;
}

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

.process article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  padding: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.process strong {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-2);
  font-size: 24px;
  font-weight: 950;
}

.process h3 {
  max-width: 260px;
  font-size: 20px;
  line-height: 1.15;
}

.process p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.process span {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-list article {
  padding: 30px;
}

.service-more {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent-2);
  font-weight: 950;
}

.reviews {
  display: grid;
  gap: 16px;
}

.reviews blockquote {
  margin: 0;
  padding: 24px;
}

.reviews cite {
  display: block;
  margin-top: 14px;
  color: var(--accent-2);
  font-style: normal;
  font-weight: 950;
}

.cta-band {
  padding: 58px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 177, 92, 0.28), transparent 34rem),
    linear-gradient(90deg, #b94c0f, var(--accent));
  color: #fff;
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.cta-band .btn-primary {
  background: #fff;
  color: #0b0d10;
}

.contact-card,
.form-card {
  padding: 30px;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

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

.request-path-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(244, 123, 32, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  padding: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.request-path-card-alert {
  border-color: rgba(244, 123, 32, 0.34);
  background:
    linear-gradient(145deg, rgba(244, 123, 32, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.request-path-card span {
  display: inline-grid;
  min-width: 48px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(244, 123, 32, 0.34);
  border-radius: var(--radius-sm);
  background: rgba(244, 123, 32, 0.13);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 950;
}

.request-path-card h3 {
  margin-top: 26px;
  font-size: 23px;
  line-height: 1.12;
}

.request-path-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.request-path-card a {
  display: inline-block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent-2);
  font-weight: 950;
}

.request-copy {
  position: sticky;
  top: 112px;
}

.request-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

.request-note {
  margin-top: 28px;
  border: 1px solid rgba(244, 123, 32, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 123, 32, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.045);
  padding: 22px;
}

.request-note h3 {
  font-size: 20px;
}

.request-note p {
  margin: 10px 0 0;
  color: var(--muted);
}

.request-info-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.request-info-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
  padding: 16px;
}

.request-info-grid span {
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 950;
}

.request-info-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.18;
}

.request-info-grid p {
  grid-column: 2;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.request-contact-panel {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 22px;
}

.request-contact-panel h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.request-contact-panel a {
  color: #fff;
  font-weight: 900;
}

.request-contact-panel p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.contact-card a {
  color: #fff;
}

.hours-box {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
  padding: 18px;
}

.hours-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.hours-box p {
  margin: 10px 0 0;
}

.route-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}

.route-panel p {
  color: var(--muted);
  font-size: 17px;
}

.route-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: route-step;
}

.route-steps li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 18px 16px 58px;
  color: var(--soft);
  font-weight: 800;
}

.route-steps li::before {
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--accent-2);
  content: counter(route-step, decimal-leading-zero);
  counter-increment: route-step;
  font-weight: 950;
}

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

.form-card h2 {
  font-size: clamp(28px, 3.2vw, 40px);
}

.form-intro {
  margin: -4px 0 4px;
  color: var(--muted);
}

.form-card-wide {
  padding: 34px;
}

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

.form-card label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  padding: 13px 14px;
}

.form-card textarea {
  min-height: 130px;
  resize: vertical;
}

.form-card select option {
  color: #111;
}

.form-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(244, 123, 32, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
}

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

.form-check span {
  color: var(--soft);
  font-size: 13px;
  line-height: 1.45;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.narrow {
  max-width: 760px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  color: var(--muted);
}

.map-strip iframe {
  display: block;
  width: 100%;
  height: 390px;
  border: 0;
  filter: grayscale(0.25) contrast(1.08) brightness(0.86);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #040507;
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-grid strong,
.footer-grid span {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 950;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 8px 0;
  font-size: 14px;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 42px rgba(244, 123, 32, 0.35);
  font-size: 13px;
  font-weight: 950;
}

:focus-visible {
  outline: 3px solid rgba(244, 123, 32, 0.88);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
  }

  .nav {
    position: absolute;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(13, 17, 24, 0.98);
    padding: 16px 20px;
  }

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

  .nav a {
    padding: 13px 0;
  }

  .nav-group {
    display: grid;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    min-width: 0;
    border: 0;
    border-left: 1px solid rgba(244, 123, 32, 0.3);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 0;
    margin: 0 0 6px 4px;
    padding: 0 0 0 14px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    visibility: visible;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    padding: 9px 0;
    white-space: normal;
  }

  .nav .nav-cta {
    margin-top: 8px;
    padding: 13px 14px;
    text-align: center;
  }

  .hero-layout,
  .split,
  .reviews-layout,
  .contact-layout,
  .request-layout,
  .cta-layout,
  .feature-band,
  .route-panel,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .method-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .method-copy {
    max-width: 760px;
  }

  .review-proof-layout {
    grid-template-columns: 1fr;
  }

  .media-card {
    min-height: 420px;
  }

  .cards-grid,
  .request-path-grid,
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .operations-layout {
    grid-template-columns: 1fr;
  }

  .operations-intro {
    position: static;
  }

  .request-copy {
    position: static;
  }

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

  .company-case-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .contract-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .contract-intake-panel {
    grid-template-columns: 1fr;
  }

  .contract-intake-list {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 18px;
    padding-left: 0;
  }

  .contract-intake-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .review-theme-grid {
    grid-template-columns: 1fr;
  }

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

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

  .site-header {
    min-height: 70px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .brand-mark img {
    width: 40px;
    height: 40px;
  }

  .brand-text strong {
    font-size: 12px;
  }

  .brand-text small {
    font-size: 11px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout,
  .section,
  .page-hero {
    padding: 60px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(31px, 8.8vw, 38px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .section-kicker {
    font-size: 11px;
    letter-spacing: 0.13em;
    overflow-wrap: break-word;
  }

  .hero p,
  .page-hero p,
  .section-heading p,
  .split p,
  .feature-copy p {
    font-size: 16px;
  }

  .cards-grid,
  .signal-list,
  .process,
  .request-path-grid,
  .related-grid,
  .operations-list article,
  .trust-grid,
  .company-case-grid,
  .contract-benefits,
  .form-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .case-list article {
    grid-template-columns: 1fr;
  }

  .case-list {
    grid-template-columns: 1fr;
  }

  .case-card {
    min-height: auto;
  }

  .case-card-head {
    grid-template-columns: 1fr;
  }

  .inline-cta-panel {
    display: grid;
  }

  .contract-intake-panel {
    padding: 20px;
  }

  .contract-intake-actions {
    display: grid;
  }

  .process article {
    min-height: auto;
  }

  .diagnostic-card {
    margin-top: 40px;
  }

  .btn {
    width: 100%;
  }

  .media-card,
  .feature-media img {
    min-height: 330px;
  }

  .logo-hero-card img {
    width: 100%;
  }

  .whatsapp {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    font-size: 11px;
    box-shadow: 0 12px 24px rgba(244, 123, 32, 0.28);
  }
}
