:root {
  --black: #11110f;
  --black-soft: #181713;
  --cream: #f4f0e7;
  --cream-2: #ebe4d7;
  --yellow: #f5c400;
  --yellow-soft: #ffd84a;
  --text: #111111;
  --muted: #5f5a50;
  --border: #d8cfbd;
  --white: #ffffff;
  --ink: var(--text);
  --line: var(--border);
  --paper: var(--cream);
  --green: var(--yellow);
  --green-dark: var(--black);
  --charcoal: var(--black-soft);
  --green-soft: var(--cream-2);
  --red: var(--yellow);
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.12);
  --shadow-soft: 0 14px 34px rgba(17, 17, 17, 0.08);
  --radius: 16px;
  --radius-small: 10px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding-top: 58px;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

main [id] {
  scroll-margin-top: 72px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 2px;
  background: var(--red);
  opacity: 0.72;
  transform: scaleX(0);
  transform-origin: left;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(251, 248, 239, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.045);
}

.nav {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: 58px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.brand img {
  display: block;
  width: 132px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(17, 17, 17, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links a {
  position: relative;
  padding: 7px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-current {
  color: var(--green-dark);
}

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

.header-motto {
  color: rgba(17, 17, 17, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-color: rgba(255, 212, 0, 0.58);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.header-side {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(17, 17, 17, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-phone::before {
  content: "";
  width: 15px;
  height: 15px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 4h3l1.4 4-2 1.4a12 12 0 0 0 5.7 5.7l1.4-2 4 1.4v3a2 2 0 0 1-2.2 2A16 16 0 0 1 4.5 6.2 2 2 0 0 1 6.5 4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 4h3l1.4 4-2 1.4a12 12 0 0 0 5.7 5.7l1.4-2 4 1.4v3a2 2 0 0 1-2.2 2A16 16 0 0 1 4.5 6.2 2 2 0 0 1 6.5 4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.header-phone:hover,
.header-phone:focus-visible {
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 4px;
  background: rgba(255, 250, 240, 0.72);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.hero {
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.985), rgba(27, 27, 25, 0.965)),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.06), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(255, 210, 26, 0.12), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 90px);
  border-bottom: 1px solid rgba(255, 210, 26, 0.42);
}

.hero-inner,
.section,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1fr);
  align-items: center;
  gap: 58px;
  padding: 54px 0 48px;
}

.hero-copy,
.hero-media,
.about-copy,
.about-visual,
.primary-service-card,
.service-card,
.reference-trust-card,
.pricing-card,
.contact-info,
.contact-form,
.form-row {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: var(--green);
}

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

h1,
h2,
h3 {
  color: var(--green-dark);
  line-height: 1.12;
}

.hero h1 {
  color: #f7f7f2;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.hero-title::after {
  content: "";
  display: block;
  width: 106px;
  height: 5px;
  margin-top: 16px;
  background: var(--green);
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5.7vw, 5.1rem);
  letter-spacing: -0.025em;
}

.hero-title {
  max-width: 720px;
  font-size: clamp(2.65rem, 5vw, 4.6rem);
  line-height: 1.04;
}

.hero-title span {
  display: block;
}

.hero-title .hero-ddd-letter {
  display: inline;
  color: var(--yellow);
}

h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
}

.page-title {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(1.85rem, 3vw, 3rem);
  letter-spacing: 0;
}

.b2b-panel .page-title {
  color: #f7f7f2;
}

h3 {
  font-size: 1.22rem;
}

.hero-lead {
  max-width: 620px;
  color: rgba(247, 247, 242, 0.78);
  font-size: 1.02rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 2px solid var(--green);
  border-radius: 4px;
  color: #111111;
  background: var(--green);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn::after {
  content: "›";
  margin-left: 16px;
  font-size: 1.4rem;
  line-height: 1;
}

.service-order::after,
.pricing-cta::after,
.form-submit::after {
  content: none;
}

.btn:hover {
  border-color: #ffe36b;
  background: #ffe36b;
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--green-dark);
  border-color: var(--green);
  background: rgba(255, 253, 247, 0.72);
}

.btn-outline:hover {
  border-color: var(--green-dark);
  color: var(--white);
}

.btn-dark {
  border-color: #111111;
  color: #f7f7f2;
  background: #111111;
}

.btn-dark:hover {
  border-color: #2b2b27;
  background: #2b2b27;
}

.hero-direct-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 18px;
  min-height: 50px;
  padding: 2px 0;
  color: rgba(247, 247, 242, 0.62);
}

.hero-direct-contact span {
  flex-basis: 100%;
  font-size: 0.78rem;
}

.hero-direct-contact a {
  display: inline-flex;
  align-items: center;
  color: #f7f7f2;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 212, 0, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero-direct-contact a[href^="tel"]::before {
  content: "☎";
  margin-right: 9px;
  color: var(--green);
}

.hero-direct-contact a[href^="mailto"]::before {
  content: "✉";
  margin-right: 9px;
  color: var(--green);
}

.hero-direct-contact a:hover {
  text-decoration-color: var(--red);
}


.check-grid span {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 4px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
}

.hero-stats {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 28px 0 24px;
  border-top: 0;
  color: var(--green-dark);
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.hero-stat {
  position: relative;
  min-height: 96px;
  padding: 0 28px 0 64px;
}

.hero-stat + .hero-stat {
  border-left: 1px solid rgba(17, 17, 17, 0.12);
}

.hero-stat:first-child {
  padding-left: 64px;
}

.hero-stat::before {
  content: "✓";
  position: absolute;
  top: 4px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 17, 17, 0.3);
  border-radius: 50%;
  color: var(--green);
  font-weight: 900;
}

.hero-stat strong {
  display: block;
  color: #111111;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat strong em {
  color: inherit;
  font-style: normal;
}

.hero-stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-media {
  overflow: hidden;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: #151515;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.hero-slider {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--green-soft);
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slider img.is-active {
  opacity: 1;
}

.hero-slider .hero-slide-mouse {
  object-position: 72% center;
}

.hero-slider .hero-slide-mouse-four {
  object-position: 58% center;
}

.media-card {
  display: grid;
  gap: 6px;
  padding: 22px;
  border-top: 1px solid rgba(255, 210, 26, 0.42);
  background:
    linear-gradient(90deg, rgba(255, 210, 26, 0.08), rgba(255, 255, 255, 0)),
    #1c1c1a;
}

.media-card strong {
  color: #f7f7f2;
}

.media-card span {
  color: rgba(247, 247, 242, 0.72);
}

.section-head p,
.text-card p,
.service-card p,
.why-grid p,
.about-copy p,
.contact-info p,
.note {
  color: var(--muted);
}

.section {
  position: relative;
  isolation: isolate;
  padding: 70px 0;
  background: var(--section-bg, var(--paper));
  box-shadow: 0 0 0 100vmax var(--section-bg, var(--paper));
  clip-path: inset(0 -100vmax);
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  box-shadow: 0 0 0 100vmax var(--line);
  clip-path: inset(0 -100vmax);
  pointer-events: none;
}

.services {
  --section-bg: #f0eadf;
}

.home-services {
  --section-bg: #f7f4ec;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  align-items: center;
  padding-block: 0;
  background: var(--section-bg);
}

.home-services-copy {
  padding: clamp(24px, 3vw, 34px) clamp(22px, 4vw, 46px) clamp(24px, 3vw, 34px) 0;
}

.home-services-copy h2 {
  max-width: 680px;
  margin-bottom: 16px;
}

.home-services-copy p {
  max-width: 720px;
  color: var(--muted);
}

.home-services-copy p:last-child {
  margin-bottom: 0;
}

.home-services-action {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  min-height: 0;
  padding: 34px 24px;
  border: 1px solid #111111;
  color: #111111;
  background: var(--green);
}

.home-services-action strong {
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  line-height: 1;
}

.home-service-btn {
  width: min(100%, 190px);
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.why {
  --section-bg: #f5f1e8;
}

.references {
  --section-bg: #eee7d9;
}

.pricing {
  --section-bg: #f1ecdf;
}

.process {
  --section-bg: #f5f1e8;
}

.about {
  --section-bg: #f3eee5;
  padding-block: 52px;
}

.contact {
  --section-bg: #f5f1e8;
}

.contact-summary {
  --section-bg: #f5f1e8;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 32px;
  align-items: center;
  padding-block: 34px;
}

.contact-summary h2 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.contact-summary p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.contact-summary-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.82);
}

.contact-summary-card strong {
  font-size: 1.04rem;
}

.contact-summary-card a:not(.btn) {
  width: fit-content;
  font-weight: 800;
}

.contact-summary-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-summary-card .btn {
  width: fit-content;
  min-height: 40px;
  margin-top: 8px;
  padding-inline: 18px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.card-grid,
.why-grid {
  display: grid;
  gap: 20px;
}

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

.text-card,
.why-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.text-card:hover,
.why-grid article:hover {
  border-color: rgba(255, 212, 0, 0.52);
  box-shadow: 0 14px 34px rgba(21, 21, 21, 0.09);
  transform: translateY(-1px);
}

.text-card h3,
.why-grid h3 {
  margin-bottom: 12px;
}

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

.primary-service-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(255, 210, 26, 0.44);
  border-radius: 8px;
  color: #f7f7f2;
  background:
    linear-gradient(145deg, rgba(255, 210, 26, 0.08), transparent 45%),
    #171817;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.14);
}

.primary-service-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-bottom: 24px;
  background: var(--green);
}

.primary-service-card h3 {
  margin-bottom: 14px;
  color: #f7f7f2;
  font-size: 1.35rem;
}

.primary-service-card p {
  margin: 0;
  color: rgba(247, 247, 242, 0.74);
  line-height: 1.55;
}

.supplementary-services {
  margin-top: 42px;
}

.supplementary-services-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.supplementary-services-head h3,
.supplementary-services-head p {
  margin: 0;
}

.supplementary-services-head p {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
}

.service-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.service-track::-webkit-scrollbar {
  display: none;
}

.service-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 50%;
  color: #111111;
  background: var(--green);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.service-arrow:hover,
.service-arrow:focus-visible {
  border-color: var(--green-dark);
  background: #ffe36b;
  transform: translateY(-1px);
}

.service-arrow:focus-visible {
  outline: 3px solid rgba(255, 212, 0, 0.36);
  outline-offset: 3px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 150px auto minmax(52px, auto) 24px;
  flex: 0 0 calc((100% - 42px) / 4);
  min-width: 0;
  min-height: 290px;
  padding: 0 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
  cursor: pointer;
  font: inherit;
  text-align: left;
  scroll-snap-align: start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card img {
  grid-column: 1 / -1;
  width: calc(100% + 32px);
  height: 150px;
  margin: 0 -16px 16px;
  border-radius: 7px 7px 0 0;
  object-fit: cover;
}

.service-card::after {
  content: none;
}

.service-card:hover,
.service-card:focus-visible,
.service-card.is-active {
  border-color: rgba(255, 212, 0, 0.72);
  box-shadow: 0 14px 34px rgba(21, 21, 21, 0.12);
  transform: translateY(-1px);
}

.service-card:focus-visible {
  outline: 3px solid rgba(255, 212, 0, 0.58);
  outline-offset: 3px;
}

.service-card.is-active {
  box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.3), 0 16px 38px rgba(21, 21, 21, 0.14);
}

.service-card span {
  align-self: start;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.18;
  text-shadow: none;
}

.service-card small {
  display: block;
  align-self: stretch;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
}

.service-card b {
  display: grid;
  grid-column: 1;
  grid-row: 4;
  place-items: center;
  justify-self: center;
  align-self: end;
  width: 34px;
  height: 22px;
  border-radius: 4px;
  color: #111111;
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.service-details {
  margin-top: 18px;
}

.service-detail {
  display: none;
  padding: 24px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 12px 30px rgba(21, 21, 21, 0.08);
}

.service-detail.is-active {
  display: block;
}

.service-detail h3 {
  margin-bottom: 10px;
}

.service-detail p {
  width: 100%;
  max-width: none;
  color: var(--muted);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.service-detail-copy p:last-child {
  margin-bottom: 0;
}

.service-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--yellow);
  border-radius: 4px;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.94rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(245, 196, 0, 0.18);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.service-more::after {
  content: "›";
  margin-left: 14px;
  font-size: 1.2rem;
  line-height: 1;
}

.service-more:hover,
.service-more:focus-visible {
  border-color: #ffd735;
  background: #ffd735;
  transform: translateY(-1px);
}

.service-order,
.service-general-order {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  width: fit-content;
  margin: 22px auto 0;
  padding: 0 14px;
  border: 1px solid var(--green);
  border-radius: 4px;
  color: var(--green-dark);
  background: rgba(255, 212, 0, 0.12);
  font-size: 0.94rem;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.service-general-order {
  margin-top: 18px;
  margin-inline: auto;
}

.service-general-order.is-hidden {
  display: none;
}

.service-order:hover,
.service-general-order:hover {
  border-color: var(--green-dark);
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-1px);
}

.b2b-panel {
  --section-bg: var(--green-dark);
  display: block;
  padding: clamp(36px, 4vw, 48px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 210, 26, 0.13), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(255, 250, 240, 0.08), transparent 30%),
    linear-gradient(135deg, #111111 0%, #171817 52%, #101010 100%);
  box-shadow: 0 0 0 100vmax var(--green-dark);
}

.b2b-panel::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  box-shadow: 0 0 0 100vmax rgba(17, 17, 17, 0.44);
  opacity: 0.55;
}

.b2b-panel h2 {
  max-width: 820px;
  margin-top: 14px;
  color: #f7f7f2;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.b2b-panel .eyebrow {
  color: var(--white);
}

.b2b-panel .panel-copy .eyebrow {
  color: var(--green);
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.b2b-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.b2b-panel .panel-copy > p:not(.eyebrow) {
  max-width: 980px;
  margin-top: 16px;
  color: rgba(247, 247, 242, 0.8);
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  line-height: 1.55;
}

.b2b-fit {
  max-width: 980px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 210, 26, 0.32);
}

.b2b-fit strong,
.b2b-fit span {
  display: inline;
}

.b2b-fit strong {
  margin-right: 8px;
  color: var(--green);
  font-size: 0.94rem;
  font-weight: 900;
  text-transform: uppercase;
}

.b2b-fit span {
  color: rgba(247, 247, 242, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  font-weight: 800;
  line-height: 1.55;
}

.b2b-fit p {
  max-width: 760px;
  margin: 8px 0 0;
  color: rgba(247, 247, 242, 0.72);
}

.b2b-benefits {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.b2b-benefit {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.b2b-benefit > div {
  position: relative;
  padding-left: 24px;
}

.b2b-benefit > div::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 3px;
  background: var(--green);
}

.b2b-benefit h3 {
  margin: 0 0 4px;
  color: #f7f7f2;
  font-size: 1.12rem;
  line-height: 1.25;
}

.b2b-benefit p {
  margin: 0;
  color: rgba(247, 247, 242, 0.76);
  line-height: 1.36;
}

.b2b-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  color: var(--green);
}

.b2b-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.b2b-icon-shield {
  border: 3px solid #f7f7f2;
  border-top-width: 4px;
  border-radius: 18px 18px 24px 24px;
  clip-path: polygon(50% 0, 92% 16%, 84% 76%, 50% 100%, 16% 76%, 8% 16%);
}

.b2b-icon-shield::after {
  width: 20px;
  height: 11px;
  left: 16px;
  top: 20px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.b2b-icon-doc {
  border: 3px solid #f7f7f2;
  border-radius: 8px;
}

.b2b-icon-doc::before {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 18px;
  height: 18px;
  border-left: 3px solid #f7f7f2;
  border-bottom: 3px solid #f7f7f2;
  background: #151515;
  transform: skew(-8deg);
}

.b2b-icon-doc::after {
  right: -9px;
  bottom: -8px;
  width: 24px;
  height: 24px;
  border: 3px solid var(--green);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #151515;
}

.b2b-icon-clock {
  border: 3px solid #f7f7f2;
  border-radius: 50%;
}

.b2b-icon-clock::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 30px;
  width: 20px;
  height: 3px;
  background: var(--green);
  box-shadow: -6px 10px 0 var(--green);
}

.b2b-icon-clock::after {
  width: 15px;
  height: 18px;
  left: 24px;
  top: 12px;
  border-left: 3px solid #f7f7f2;
  border-bottom: 3px solid #f7f7f2;
}

.b2b-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 58px;
  margin-top: 18px;
  padding: 0 34px;
  border: 1px solid rgba(255, 210, 26, 0.92);
  border-radius: 8px;
  color: #111111;
  background: linear-gradient(180deg, #ffda2d, #f5c400);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
  font-size: 1.02rem;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.b2b-cta::after {
  content: "→";
  font-size: 1.55rem;
  line-height: 1;
}

.b2b-cta:hover,
.b2b-cta:focus-visible {
  background: #ffe36b;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
}

.b2b-process {
  margin-top: 22px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(255, 210, 26, 0.32);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 22px 58px rgba(0, 0, 0, 0.22);
}

.b2b-process h3 {
  margin: 0 0 14px;
  color: #f7f7f2;
  font-size: clamp(1.18rem, 1.8vw, 1.5rem);
  line-height: 1.15;
}

.b2b-panel .steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  counter-reset: steps;
}

.b2b-panel .steps li {
  position: relative;
  min-height: 104px;
  padding: 48px 10px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  counter-increment: steps;
}

.b2b-panel .steps li:not(:last-child) {
  margin-bottom: 0;
  border-bottom: 0;
}

.b2b-panel .steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 54px;
  right: -6px;
  border-top: 2px dashed rgba(255, 210, 26, 0.58);
}

.b2b-panel .steps li::before {
  content: counter(steps);
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  color: var(--green-dark);
  background: var(--green);
  box-shadow: 0 8px 22px rgba(255, 210, 26, 0.28);
  font-size: 1rem;
  font-weight: 900;
}

.b2b-panel .steps strong {
  color: #f7f7f2;
  font-size: 1.02rem;
  line-height: 1.2;
}

.b2b-panel .steps span {
  margin-top: 6px;
  color: rgba(247, 247, 242, 0.72);
  font-size: 0.88rem;
  line-height: 1.36;
}

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

.references {
  border-top: 0;
  border-bottom: 0;
}

.references:not(.references-compact) {
  padding-bottom: 26px;
}

.references-compact {
  padding-block: 24px;
}

.references-compact .section-head {
  margin-bottom: 12px;
}

.references-compact h2 {
  max-width: 760px;
  font-size: clamp(0.86rem, 1.15vw, 1rem);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.references-compact .logo-row {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 0 0 12px;
}

.references-compact .logo-row img,
.references-compact .logo-more {
  height: 76px;
  padding: 14px 18px;
}

.logo-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: 1px solid #111111;
  border-radius: 8px;
  color: #111111;
  background: rgba(255, 252, 246, 0.9);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
  font-size: clamp(0.88rem, 1.2vw, 1.02rem);
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.logo-more::after {
  content: "›";
  font-size: 1.25rem;
  line-height: 1;
}

.logo-more:hover,
.logo-more:focus-visible {
  border-color: #111111;
  background: rgba(255, 252, 246, 0.98);
  box-shadow: 0 14px 30px rgba(21, 21, 21, 0.12);
  transform: translateY(-2px);
}

.references .section-head {
  max-width: 860px;
  margin-bottom: 32px;
}

.references-compact .section-head {
  max-width: none;
  margin-bottom: 12px;
}

.references .eyebrow {
  color: var(--green);
  letter-spacing: 0.12em;
}

.references h2 {
  max-width: 860px;
  color: #101010;
  font-family: inherit;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.references-compact h2 {
  max-width: none;
  font-family: inherit;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}

.references .section-head p {
  max-width: 720px;
  margin-top: 18px;
  color: #74706a;
  font-size: 1rem;
  line-height: 1.65;
}

.section .eyebrow {
  color: var(--green);
  font-size: 0.84rem;
}

.references .section-head .eyebrow {
  color: var(--green);
  font-size: 0.84rem;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0 30px;
}

.logo-row img {
  width: 100%;
  height: 104px;
  object-fit: contain;
  padding: 22px 24px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.86);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.035);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.logo-row img:hover {
  border-color: rgba(255, 212, 0, 0.34);
  box-shadow: 0 10px 26px rgba(21, 21, 21, 0.06);
  transform: translateY(-1px);
}

.references:not(.references-compact) .logo-row {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 34px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(216, 207, 189, 0.95);
}

.references:not(.references-compact) .logo-more {
  min-height: 104px;
  padding: 22px 18px;
}

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

.reference-detail-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.76);
  box-shadow: var(--shadow-soft);
}

.reference-detail-card .eyebrow {
  margin-bottom: 12px;
  color: var(--yellow);
}

.reference-detail-card h2 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.reference-detail-card p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.58;
}

.reference-detail-card p:last-child {
  margin-bottom: 0;
}

.reference-detail-card-dark {
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--black);
  color: #fff;
}

.reference-detail-card-dark h2 {
  color: #fff;
}

.reference-detail-card-dark p {
  color: rgba(244, 240, 231, 0.72);
}

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

.reference-block-label,
.reference-list-title {
  width: min(100%, 1060px);
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reference-trust-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.72);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
}

.reference-trust-card h3 {
  margin-bottom: 10px;
  color: #151515;
  font-size: 1.08rem;
}

.reference-trust-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.reference-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 1060px);
  margin: 0 auto;
}

.reference-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 18px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.62);
  color: var(--green-dark);
  font-size: 0.96rem;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.reference-list span:hover {
  border-color: rgba(255, 212, 0, 0.4);
  background: rgba(255, 250, 240, 0.9);
  transform: translateY(-1px);
}

.note {
  margin: 24px 0 0;
}

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

.pricing-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(21, 21, 21, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(21, 21, 21, 0.08);
}

.pricing-card h3 {
  margin-bottom: 12px;
}

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

.pricing-action-row {
  display: grid;
  justify-items: start;
  gap: 14px;
  margin-top: 42px;
}

.pricing-note {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.pricing-cta {
  width: fit-content;
}

body:has(.pricing) main {
  display: flex;
  flex-direction: column;
}

body:has(.pricing) .pricing {
  flex: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  padding: 60px 20px 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  counter-increment: steps;
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  top: 18px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-dark);
  box-shadow: inset 0 -3px 0 var(--red);
  font-weight: 800;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 8px;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 4vw, 54px);
  padding-block: 30px;
}

.about-copy {
  max-width: 720px;
}

.about-copy h2 {
  margin-bottom: 20px;
}

.about-copy > p {
  max-width: 680px;
}

.about-copy > p:last-of-type {
  margin-bottom: 0;
}

.about-visual {
  position: relative;
  overflow: hidden;
  height: clamp(300px, 28vw, 340px);
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: #161614;
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.16);
}

.about-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 6%;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-box {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding: 26px;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, #151515, #252015);
  border-top: 5px solid var(--red);
}

.contact-box a {
  font-size: 1.25rem;
  font-weight: 800;
}

.contact-mouse {
  display: block;
  width: min(190px, 46%);
  margin: 22px auto 0;
  filter: drop-shadow(0 14px 20px rgba(17, 17, 17, 0.12));
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-intro {
  margin: 0 0 4px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

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

.form-row {
  display: grid;
  gap: 7px;
}

label {
  color: var(--green-dark);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cfd8d1;
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 212, 0, 0.28);
  border-color: var(--green);
}

.hidden-field {
  display: none;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 600;
}

.consent input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
}

.form-submit {
  width: 100%;
}

.footer {
  padding: 24px 0;
  color: rgba(255, 253, 247, 0.72);
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.98), rgba(31, 28, 18, 0.98)),
    radial-gradient(circle at 8% 0%, rgba(255, 212, 0, 0.18), transparent 34%);
  box-shadow: 0 0 0 100vmax #151515;
  clip-path: inset(0 -100vmax);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.34fr);
  gap: 34px;
  align-items: center;
}

.footer-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  max-width: 720px;
}

.footer-brand img {
  display: block;
  width: 138px;
  height: auto;
  margin: 0;
  padding: 5px 7px;
  border-radius: 6px;
  background: rgba(255, 253, 247, 0.94);
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.9rem;
  line-height: 1.42;
}

.footer-col,
.footer-links {
  display: grid;
  align-content: start;
  gap: 5px;
}

.footer h3 {
  margin: 0 0 4px;
  color: var(--green);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer a:hover {
  color: var(--green);
}

.footer-col span {
  color: rgba(255, 253, 247, 0.68);
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 210, 26, 0.12), transparent 32%),
    linear-gradient(135deg, #111111, #1c1c1a);
}

.thank-you-card {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255, 210, 26, 0.52);
  border-radius: 8px;
  color: #f7f7f2;
  background: rgba(28, 28, 26, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.thank-you-card img {
  width: 220px;
  margin-bottom: 28px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.96);
}

.thank-you-card h1 {
  color: #f7f7f2;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.thank-you-card p:not(.eyebrow) {
  color: rgba(247, 247, 242, 0.76);
}

.thank-you-card a:not(.btn) {
  color: var(--green);
  font-weight: 800;
}

.thank-you-card .btn {
  margin-top: 14px;
}

/* Modern B2B visual refresh */
body {
  padding-top: 66px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 220px),
    var(--cream);
  color: var(--text);
}

.site-header {
  background: rgba(244, 240, 231, 0.92);
  border-bottom: 1px solid rgba(17, 17, 15, 0.08);
  box-shadow: 0 10px 26px rgba(17, 17, 15, 0.055);
}

.nav {
  min-height: 66px;
}

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

.nav-links {
  color: rgba(17, 17, 15, 0.68);
  font-size: 0.8rem;
  gap: 20px;
}

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

.nav-links a::after {
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: rgba(245, 196, 0, 0.72);
}

.header-motto {
  color: rgba(17, 17, 15, 0.45);
  text-decoration-color: rgba(245, 196, 0, 0.42);
  text-decoration-thickness: 2px;
}

.header-phone {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(245, 196, 0, 0.36);
  border-radius: 999px;
  color: var(--yellow-soft);
  background: var(--black);
  box-shadow: 0 10px 22px rgba(17, 17, 15, 0.14);
}

.header-phone:hover,
.header-phone:focus-visible {
  color: var(--yellow);
  border-color: rgba(245, 196, 0, 0.66);
  transform: translateY(-1px);
}

.btn,
.form-submit,
.pricing-cta {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--yellow);
  border-radius: var(--radius-small);
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(245, 196, 0, 0.18);
  font-weight: 900;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.form-submit:hover,
.pricing-cta:hover {
  border-color: var(--yellow-soft);
  background: var(--yellow-soft);
  box-shadow: 0 14px 30px rgba(245, 196, 0, 0.22);
  transform: translateY(-2px);
}

.btn-dark,
.home-service-btn,
.b2b-cta {
  border-color: var(--black);
  color: var(--white);
  background: var(--black);
  box-shadow: 0 12px 28px rgba(17, 17, 15, 0.16);
}

.btn-dark:hover,
.home-service-btn:hover,
.b2b-cta:hover {
  border-color: rgba(245, 196, 0, 0.64);
  color: var(--white);
  background: var(--black-soft);
  box-shadow: 0 16px 34px rgba(17, 17, 15, 0.2);
}

.eyebrow {
  color: var(--yellow);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  color: var(--black);
  letter-spacing: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 196, 0, 0.18), transparent 32%),
    linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  border-bottom: 1px solid rgba(245, 196, 0, 0.22);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -28% 48%;
  height: 380px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 196, 0, 0.14), transparent 62%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  gap: clamp(38px, 5vw, 72px);
  padding: clamp(44px, 4.8vw, 62px) 0 clamp(40px, 4.4vw, 56px);
}

.hero-title {
  max-width: 760px;
  font-size: clamp(2.7rem, 5vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
}

.hero-title::after {
  width: 76px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--yellow);
}

.hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.7;
}

.hero-actions {
  gap: 18px;
  margin-top: 30px;
}

.hero-direct-contact {
  color: rgba(255, 255, 255, 0.54);
}

.hero-direct-contact a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration-color: rgba(245, 196, 0, 0.3);
}

.hero-direct-contact a[href^="tel"]::before,
.hero-direct-contact a[href^="mailto"]::before {
  color: var(--yellow);
}

.hero-media {
  position: relative;
  border: 1px solid rgba(245, 196, 0, 0.45);
  border-radius: 18px;
  overflow: hidden;
  background: var(--black-soft);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 2;
}

.hero-slider {
  background: var(--cream-2);
}

.media-card {
  border-top: 1px solid rgba(245, 196, 0, 0.28);
  background:
    linear-gradient(90deg, rgba(245, 196, 0, 0.08), transparent 55%),
    var(--black-soft);
}

.hero-stats {
  gap: 16px;
  padding: 28px 0 34px;
  background: var(--cream);
  box-shadow: 0 0 0 100vmax var(--cream);
}

.hero-stat {
  min-height: 122px;
  padding: 22px 22px 22px 58px;
  border: 1px solid rgba(216, 207, 189, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-soft);
}

.hero-stat + .hero-stat {
  border-left: 1px solid rgba(216, 207, 189, 0.9);
}

.hero-stat:first-child {
  padding-left: 58px;
}

.hero-stat::before {
  top: 22px;
  left: 20px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.82rem;
}

.hero-stat strong {
  color: var(--black);
  font-size: clamp(1.28rem, 1.8vw, 1.72rem);
  letter-spacing: 0;
}

.hero-stat span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.hero-stats {
  gap: 0;
  padding: 24px 0 22px;
  background: var(--cream);
  border-bottom: 1px solid rgba(245, 196, 0, 0.5);
  box-shadow: 0 0 0 100vmax var(--cream);
}

.hero-stat {
  min-height: 100px;
  padding: 0 30px 0 76px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-stat + .hero-stat {
  border-left: 1px solid rgba(17, 17, 15, 0.14);
}

.hero-stat:first-child {
  padding-left: 76px;
}

.hero-stat::before {
  top: 2px;
  left: 24px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 17, 15, 0.24);
  border-radius: 50%;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.05rem;
}

.hero-stat strong {
  color: var(--black);
  font-size: clamp(1.55rem, 2.35vw, 2.05rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.hero-stat span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.hero-stat .cert-lines {
  white-space: nowrap;
  line-height: 1.32;
}

.section {
  padding: clamp(72px, 7vw, 96px) 0;
  background: var(--section-bg, var(--cream));
  box-shadow: 0 0 0 100vmax var(--section-bg, var(--cream));
}

.section::before {
  background: rgba(216, 207, 189, 0.75);
  box-shadow: 0 0 0 100vmax rgba(216, 207, 189, 0.75);
}

.home-services {
  --section-bg: var(--cream);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.home-services-copy {
  padding: 0;
}

.home-services-copy h2 {
  max-width: 760px;
}

.home-services-copy p {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.72;
}

.home-services-action {
  justify-items: stretch;
  gap: 14px;
  padding: 32px;
  border: 1px solid rgba(245, 196, 0, 0.34);
  border-top: 5px solid var(--yellow);
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(245, 196, 0, 0.11), transparent 48%),
    var(--black);
  box-shadow: 0 18px 42px rgba(17, 17, 15, 0.18);
}

.home-services-action strong {
  color: var(--yellow);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  justify-self: center;
  text-align: center;
}

.home-service-btn {
  width: 100%;
  min-height: 46px;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-small);
}

.references-compact {
  --section-bg: var(--cream-2);
  padding-block: 42px;
}

.references-compact h2 {
  color: var(--black);
  font-size: clamp(1.06rem, 1.55vw, 1.35rem);
  font-weight: 700;
}

.references-compact .logo-row {
  gap: 14px;
}

.logo-row img,
.logo-more {
  border: 1px solid rgba(216, 207, 189, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 22px rgba(17, 17, 15, 0.045);
}

.logo-row img {
  object-fit: contain;
}

.references-compact .logo-row img,
.references-compact .logo-more {
  height: 82px;
  padding: 16px 18px;
}

.logo-row img:hover,
.logo-more:hover,
.logo-more:focus-visible {
  border-color: rgba(245, 196, 0, 0.5);
  box-shadow: 0 16px 30px rgba(17, 17, 15, 0.09);
  transform: translateY(-2px);
}

.logo-more {
  gap: 6px;
  border-color: rgba(245, 196, 0, 0.28);
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(145deg, rgba(245, 196, 0, 0.1), transparent 44%),
    var(--black);
  font-size: 0.9rem;
  box-shadow: 0 14px 30px rgba(17, 17, 15, 0.14);
}

.logo-more strong {
  color: var(--yellow);
  font-size: inherit;
  line-height: 1;
}

.logo-more::after {
  margin-left: 4px;
  color: var(--yellow);
}

.logo-more:hover,
.logo-more:focus-visible {
  background:
    linear-gradient(145deg, rgba(245, 196, 0, 0.16), transparent 44%),
    var(--black-soft);
}

.contact-summary {
  --section-bg: var(--cream);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.4fr);
  gap: clamp(28px, 5vw, 64px);
  padding-block: clamp(70px, 7vw, 92px);
}

.contact-summary h2 {
  max-width: 780px;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
}

.contact-summary p {
  max-width: 760px;
  line-height: 1.72;
}

.contact-summary-card {
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(245, 196, 0, 0.32);
  border-top: 5px solid var(--yellow);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.8);
  background:
    linear-gradient(150deg, rgba(245, 196, 0, 0.12), transparent 48%),
    var(--black);
  box-shadow: 0 18px 42px rgba(17, 17, 15, 0.18);
}

.contact-summary-card strong {
  color: var(--white);
}

.contact-summary-card a:not(.btn) {
  color: var(--yellow);
}

.contact-summary-card span {
  color: rgba(255, 255, 255, 0.62);
}

.contact-summary-card .btn {
  border-color: var(--yellow);
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(245, 196, 0, 0.18);
}

.contact-summary-card .btn:hover {
  border-color: var(--yellow-soft);
  background: var(--yellow-soft);
}

.primary-service-card,
.service-card,
.reference-trust-card,
.pricing-card,
.contact-form,
.contact-box,
.b2b-benefit,
.steps div,
.text-card,
.why-grid article {
  border-radius: var(--radius);
  border-color: rgba(216, 207, 189, 0.9);
  box-shadow: var(--shadow-soft);
}

.service-card,
.pricing-card,
.contact-form {
  background: rgba(255, 255, 255, 0.58);
}

.service-card:hover,
.service-card:focus-visible,
.pricing-card:hover,
.reference-trust-card:hover {
  border-color: rgba(245, 196, 0, 0.48);
  box-shadow: 0 18px 36px rgba(17, 17, 15, 0.1);
}

.footer {
  padding: 34px 0;
  color: rgba(244, 240, 231, 0.68);
  background:
    linear-gradient(135deg, rgba(17, 17, 15, 0.98), rgba(24, 23, 19, 0.98)),
    var(--black);
  box-shadow: 0 0 0 100vmax var(--black);
}

.footer-top {
  align-items: center;
}

.footer-brand img {
  width: 124px;
  padding: 6px 8px;
  border-radius: 12px;
  background: rgba(244, 240, 231, 0.94);
}

.footer-brand p {
  color: rgba(244, 240, 231, 0.66);
}

.footer h3 {
  color: var(--yellow);
}

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

.footer-col span {
  color: rgba(244, 240, 231, 0.58);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 0.32s ease-out,
      transform 0.32s ease-out;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  .nav {
    display: flex;
  }

  .header-motto {
    display: none;
  }

  .header-side {
    margin-left: auto;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
    order: 4;
  }

  .nav-open .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-open .nav-links a {
    padding: 13px;
  }

  .hero-inner,
  .home-services,
  .b2b-panel,
  .about,
  .contact,
  .contact-summary {
    grid-template-columns: 1fr;
  }

  .b2b-panel {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 38px;
  }

  .three,
  .primary-service-grid,
  .service-grid,
  .why-grid,
  .pricing-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about {
    gap: 32px;
  }

  .about-visual,
  .about-visual img {
    height: 320px;
  }

  .home-services-copy {
    padding: 30px 0 20px;
  }

  .home-services-action {
    min-height: 132px;
  }

  .logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reference-trust-grid,
  .reference-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-inline: 0;
  }

  .service-card {
    flex-basis: calc((100% - 28px) / 3);
  }
}

@media (max-width: 720px) {
  body {
    padding-top: 54px;
  }

  main [id] {
    scroll-margin-top: 68px;
  }

  .nav,
  .hero-inner,
  .section,
  .footer {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    min-height: 54px;
  }

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

  .header-phone {
    font-size: 0.76rem;
  }

  .nav-open .nav-links {
    top: calc(100% + 8px);
  }

  .references-compact h2 {
    font-size: 0.82rem;
    white-space: normal;
  }

  .hero-inner {
    gap: 28px;
    padding: 46px 0 40px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.2rem, 10.5vw, 2.6rem);
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

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

  .hero-actions .btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
  }

  .hero-direct-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-direct-contact a {
    min-height: 42px;
    padding: 8px 0;
  }

  .three,
  .check-grid,
  .primary-service-grid,
  .service-grid,
  .why-grid,
  .pricing-grid,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 22px 0 24px;
  }

  .hero-stat {
    min-height: 90px;
    padding: 18px 20px;
  }

  .hero-stat + .hero-stat {
    border-left: 0;
  }

  .hero-stat:nth-child(2n) {
    border-left: 1px solid rgba(255, 212, 0, 0.34);
  }

  .hero-stat:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 212, 0, 0.34);
  }

  .primary-service-card {
    min-height: 0;
    padding: 24px;
  }

  .about {
    padding-block: 30px;
  }

  .about-visual,
  .about-visual img {
    height: 260px;
  }

  .home-services-copy {
    padding: 28px 0 18px;
  }

  .home-services-action {
    min-height: 124px;
    padding: 20px 18px;
  }

  .service-carousel {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .service-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }

  .service-card {
    flex-basis: 100%;
    min-height: 280px;
  }

  .supplementary-services-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .service-detail {
    padding: 20px;
  }

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

  .service-more {
    justify-self: center;
  }

  .pricing-action-row {
    justify-items: stretch;
    gap: 14px;
  }

  .pricing-cta {
    width: 100%;
  }

  .b2b-panel,
  .contact-form {
    padding: 24px;
  }

  .contact-summary {
    gap: 20px;
    padding-block: 28px;
  }

  .contact-summary-card {
    padding: 20px;
  }

  .b2b-panel {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

  .b2b-benefit {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 18px;
  }

  .b2b-icon {
    width: 44px;
    height: 44px;
  }

  .b2b-icon-shield::after {
    left: 13px;
    top: 16px;
  }

  .b2b-icon-doc::after {
    right: -8px;
    bottom: -8px;
  }

  .b2b-icon-clock::after {
    left: 19px;
    top: 9px;
  }

  .b2b-cta {
    width: 100%;
    gap: 16px;
    padding: 0 18px;
  }

  .b2b-process {
    margin-top: 18px;
    padding: 18px 14px;
  }

  .b2b-fit {
    margin-top: 18px;
    padding-top: 14px;
  }

  .b2b-fit strong,
  .b2b-fit span {
    display: block;
  }

  .b2b-fit strong {
    margin: 0 0 6px;
  }

  .b2b-panel .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .b2b-panel .steps li {
    min-height: 0;
    padding: 0 0 18px 50px;
  }

  .b2b-panel .steps li::before {
    width: 36px;
    height: 36px;
  }

  .b2b-panel .steps li:not(:last-child)::after {
    left: 18px;
    top: 38px;
    right: auto;
    bottom: 0;
    border-top: 0;
    border-left: 2px dashed rgba(255, 210, 26, 0.58);
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .logo-row img,
  .logo-more {
    height: 92px;
    padding: 14px;
  }

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

  .footer {
    padding: 24px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-brand {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-brand img {
    width: 150px;
  }
}

@media (max-width: 1080px) {
  .nav {
    min-height: 60px;
  }

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

  .header-phone {
    min-height: 34px;
    padding-inline: 12px;
  }

  .nav-open .nav-links {
    border-radius: 16px;
    background: rgba(244, 240, 231, 0.98);
    box-shadow: 0 18px 42px rgba(17, 17, 15, 0.14);
  }

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

  .hero-stat,
  .hero-stat:first-child {
    padding: 18px 20px 18px 58px;
  }

  .hero-stat:nth-child(2n),
  .hero-stat:nth-child(n + 3),
  .hero-stat + .hero-stat {
    border: 0;
  }

  .hero-stat:nth-child(2n) {
    border-left: 1px solid rgba(17, 17, 15, 0.14);
  }

  .hero-stat:nth-child(n + 3) {
    border-top: 1px solid rgba(17, 17, 15, 0.14);
  }

  .references-compact .logo-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .references-compact .logo-more {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  body {
    padding-top: 58px;
  }

  .nav {
    min-height: 58px;
  }

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

  .header-phone {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .header-phone::before {
    width: 13px;
    height: 13px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 0 36px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9.2vw, 2.75rem);
    line-height: 1.04;
  }

  .hero-title::after {
    width: 64px;
    height: 4px;
  }

  .hero-media {
    border-radius: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0 24px;
  }

  .hero-stat,
  .hero-stat:first-child {
    min-height: 0;
    padding: 20px 20px 20px 56px;
  }

  .hero-stat::before {
    top: 20px;
    left: 18px;
  }

  .hero-stat:nth-child(2n),
  .hero-stat:nth-child(n + 3),
  .hero-stat + .hero-stat {
    border: 0;
  }

  .hero-stat + .hero-stat {
    border-top: 1px solid rgba(17, 17, 15, 0.14);
  }

  .section {
    padding: 54px 0;
  }

  .home-services {
    gap: 22px;
  }

  .home-services-action {
    padding: 26px;
    border-radius: 16px;
  }

  .references-compact {
    padding-block: 34px;
  }

  .references-compact h2 {
    font-size: 1rem;
    line-height: 1.25;
  }

  .references-compact .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .references-compact .logo-row img,
  .references-compact .logo-more {
    height: 86px;
    padding: 14px;
  }

  .references-compact .logo-more {
    grid-column: span 2;
  }

  .contact-summary {
    padding-block: 48px;
  }

  .contact-summary-card {
    border-radius: 16px;
  }

  .contact-summary-card .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .footer {
    padding: 30px 0;
  }
}

@media (max-width: 430px) {
  .header-phone {
    font-size: 0;
    gap: 0;
    width: 36px;
    justify-content: center;
    padding-inline: 0;
  }

  .header-phone::before {
    width: 15px;
    height: 15px;
  }
}

/* Final size tuning */
.nav {
  min-height: 66px;
}

.brand {
  display: grid;
  place-items: center;
}

.brand img {
  width: auto;
  height: 58px;
  transform: scale(1.38);
  transform-origin: left center;
}

.hero-inner {
  padding: clamp(22px, 2.6vw, 34px) 0 clamp(20px, 2.4vw, 30px);
}

.hero-title {
  font-size: clamp(2.55rem, 4.6vw, 4.2rem);
  line-height: 1.03;
}

.hero-title::after {
  margin-top: 12px;
}

.hero-actions {
  margin: 22px 0 12px;
}

@media (max-width: 1080px) {
  .brand img {
    height: 50px;
    transform: scale(1.26);
  }

  .header-branding {
    gap: 0;
  }
}

@media (max-width: 720px) {
  .brand img {
    height: 42px;
    transform: scale(1.18);
  }

  .hero-inner {
    padding: 26px 0 24px;
  }

  .hero-title {
    font-size: clamp(2.05rem, 8.8vw, 2.55rem);
    line-height: 1.05;
  }
}

.contact-summary {
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
}

.contact-summary-media {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(216, 207, 189, 0.9);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 46%, rgba(245, 196, 0, 0.16), transparent 52%),
    rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.contact-summary-media img {
  display: block;
  width: min(230px, 72%);
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(17, 17, 15, 0.12));
}

.contact-summary-content {
  display: grid;
  gap: 22px;
  align-content: center;
}

@media (max-width: 1080px) {
  .contact-summary {
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .contact-summary {
    grid-template-columns: 1fr;
  }

  .contact-summary-media {
    min-height: 190px;
    padding: 22px;
  }

  .contact-summary-media img {
    width: min(180px, 62%);
  }
}

.footer {
  padding: 10px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: none;
}

.footer-brand img {
  width: auto;
  height: 52px;
  padding: 4px 6px;
}

.footer-brand p {
  max-width: 420px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.footer-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px 16px;
}

.footer h3 {
  margin: 0;
  flex-basis: auto;
}

.footer a,
.footer-col span {
  font-size: 0.82rem;
  line-height: 1.25;
}

.footer-col span:last-child {
  flex-basis: 100%;
  text-align: right;
  font-size: 0.74rem;
  color: rgba(244, 240, 231, 0.46);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-col {
    justify-content: flex-start;
  }

  .footer-col span:last-child {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-col {
    display: grid;
    gap: 5px;
  }
}

.contact-summary {
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  align-items: center;
}

.contact-summary-side {
  display: grid;
  gap: 18px;
}

.contact-summary-content {
  display: grid;
  align-content: center;
  max-width: 780px;
  justify-self: end;
}

.contact-summary-media {
  min-height: 0;
  padding: 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-summary-media img {
  width: min(190px, 70%);
  margin: 0 auto;
}

@media (max-width: 1080px) {
  .contact-summary {
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .contact-summary {
    grid-template-columns: 1fr;
  }

  .contact-summary-content {
    justify-self: stretch;
  }

  .contact-summary-side {
    order: 2;
  }

  .contact-summary-content {
    order: 1;
  }

  .contact-summary-media {
    padding: 12px;
  }
}

/* Compact homepage contact summary */
.contact-summary {
  grid-template-columns: minmax(260px, 340px) minmax(0, 640px);
  gap: clamp(30px, 5vw, 72px);
  justify-content: start;
  padding-top: clamp(28px, 4vw, 46px);
  padding-bottom: clamp(26px, 4vw, 44px);
}

.contact-summary-side {
  gap: 10px;
  align-content: center;
}

.contact-summary-side > .eyebrow {
  margin: 0 0 2px;
}

.contact-summary-card {
  color: rgba(244, 240, 231, 0.72);
  padding: 20px;
  gap: 9px;
  justify-items: center;
  text-align: center;
}

.contact-summary-card strong {
  color: #fff;
}

.contact-summary-card a:not(.btn) {
  color: rgba(244, 240, 231, 0.9);
}

.contact-summary-card span {
  color: rgba(244, 240, 231, 0.64);
}

.contact-summary-card .btn {
  justify-self: center;
}

.contact-summary-content {
  max-width: 620px;
  justify-self: stretch;
}

.contact-summary-content h2 {
  max-width: 600px;
}

.contact-summary-content p {
  max-width: 600px;
}

.contact-summary-media {
  padding: 0;
}

.contact-summary-media img {
  width: min(118px, 44%);
}

@media (max-width: 1080px) {
  .contact-summary {
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .contact-summary {
    grid-template-columns: 1fr;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .contact-summary-side {
    order: 1;
  }

  .contact-summary-content {
    order: 2;
  }
}

@media (max-width: 860px) {
  .reference-detail-grid {
    grid-template-columns: 1fr;
  }

  .references:not(.references-compact) .logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Match homepage services CTA to the contact info card */
.home-services-action {
  border: 1px solid rgba(245, 196, 0, 0.32);
  border-top: 5px solid var(--yellow);
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(245, 196, 0, 0.12), transparent 48%),
    var(--black);
  box-shadow: 0 18px 42px rgba(17, 17, 15, 0.18);
}

.home-services-action strong {
  color: #fff;
}

.home-services-action .home-service-btn {
  border-color: var(--yellow);
  color: var(--black);
  background: var(--yellow);
}

.home-services-action .home-service-btn::after {
  color: var(--black);
}

.home-services-action .home-service-btn:hover {
  border-color: #ffd735;
  color: var(--black);
  background: #ffd735;
}

/* Remove distracting yellow fade from the hero background */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
}

.hero::before {
  content: none;
}

/* Footer visibility fix */
.footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 12px 0;
  color: rgba(244, 240, 231, 0.7);
  background: var(--black);
  box-shadow: none;
  clip-path: none;
}

.footer-top {
  width: min(1180px, calc(100% - 32px));
  min-height: 56px;
  margin: 0 auto;
}

.footer-brand img {
  display: block;
  width: auto;
  max-width: 150px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  padding: 0;
}

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

.footer h3 {
  color: var(--yellow);
}

.footer-col span {
  color: rgba(244, 240, 231, 0.62);
}

.footer-col span:last-child {
  color: rgba(244, 240, 231, 0.48);
}

.footer .reveal,
.footer .reveal.is-visible {
  opacity: 1;
  transform: none;
}


/* Light business page section */
.b2b-panel {
  --section-bg: var(--cream);
  display: block;
  padding: clamp(42px, 5vw, 68px) 0;
  color: var(--black);
  background: var(--section-bg);
  box-shadow: 0 0 0 100vmax var(--section-bg);
}

.b2b-panel::before {
  height: 1px;
  background: var(--line);
  box-shadow: 0 0 0 100vmax var(--line);
  opacity: 1;
}

.b2b-panel .panel-copy {
  max-width: 1040px;
}

.b2b-panel .panel-copy .eyebrow,
.b2b-panel .eyebrow {
  color: var(--yellow);
}

.b2b-panel .page-title,
.b2b-panel h2,
.b2b-panel h3 {
  color: var(--black);
}

.b2b-panel .panel-copy > p:not(.eyebrow),
.b2b-panel p {
  color: var(--muted);
}

.b2b-fit {
  display: grid;
  gap: 7px;
  max-width: 920px;
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid rgba(216, 207, 189, 0.9);
  border-top: 5px solid var(--yellow);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.72);
  box-shadow: var(--shadow-soft);
}

.b2b-fit strong,
.b2b-fit span {
  display: block;
}

.b2b-fit strong {
  margin: 0;
  color: var(--black);
  text-transform: none;
}

.b2b-fit span {
  color: var(--black);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
}

.b2b-fit p {
  color: var(--muted);
}

.b2b-process {
  margin-top: 24px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(216, 207, 189, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.72);
  box-shadow: var(--shadow-soft);
}

.b2b-process h3 {
  color: var(--black);
}

.b2b-panel .steps li {
  padding-top: 50px;
  color: var(--muted);
}

.b2b-panel .steps li::before {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 8px 18px rgba(245, 196, 0, 0.2);
}

.b2b-panel .steps li:not(:last-child)::after {
  border-color: rgba(17, 17, 15, 0.18);
}

.b2b-panel .steps strong {
  color: var(--black);
}

.b2b-panel .steps span {
  color: var(--muted);
}

.b2b-panel .b2b-cta {
  border-color: var(--yellow);
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 14px 30px rgba(245, 196, 0, 0.2);
}

.b2b-panel .b2b-cta::after {
  color: var(--black);
}

.b2b-panel .b2b-cta:hover,
.b2b-panel .b2b-cta:focus-visible {
  border-color: #ffd735;
  color: var(--black);
  background: #ffd735;
  box-shadow: 0 16px 34px rgba(245, 196, 0, 0.24);
}

@media (max-width: 720px) {
  .b2b-panel {
    padding: 34px 0;
  }

  .b2b-fit,
  .b2b-process {
    padding: 18px;
  }

  .b2b-panel .steps li {
    padding: 0 0 18px 50px;
  }

  .references:not(.references-compact) .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Keep footer at the bottom on short standalone pages */
body {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 66px);
}

main {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
}

@media (max-width: 720px) {
  body {
    min-height: calc(100vh - 58px);
  }
}

/* Match contact page info box to homepage basic info card */
.contact-box {
  width: min(100%, 340px);
  border: 1px solid rgba(245, 196, 0, 0.32);
  border-top: 5px solid var(--yellow);
  border-radius: 18px;
  color: rgba(244, 240, 231, 0.72);
  background:
    linear-gradient(150deg, rgba(245, 196, 0, 0.12), transparent 48%),
    var(--black);
  box-shadow: 0 18px 42px rgba(17, 17, 15, 0.18);
  justify-items: center;
  text-align: center;
}

.contact-box strong {
  color: #fff;
}

.contact-box a {
  color: rgba(244, 240, 231, 0.9);
}

.contact-box span {
  color: rgba(244, 240, 231, 0.64);
}

/* Center motto visually between menu and phone */
.header-side {
  gap: 24px;
}

/* Header layout: logo left, menu centered, motto + phone right */
.nav {
  grid-template-columns: 1fr auto 1fr;
}

.header-branding {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  justify-self: start;
}

.brand {
  justify-self: start;
}

.nav-links {
  justify-self: center;
}

.header-side {
  justify-self: end;
}

/* Consistent standalone page openings */
main > .section:first-child {
  padding-top: clamp(34px, 4vw, 48px);
}

main > .section:first-child > .section-head > .eyebrow,
main > .section:first-child > .panel-copy > .eyebrow,
main > .section:first-child > .about-copy > .eyebrow,
main > .section:first-child > .contact-info > .eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  main > .section:first-child {
    padding-top: 30px;
  }
}

/* Compact contact form */
.contact-page .contact-form {
  gap: 11px;
  padding: 20px;
}

.contact-page .form-intro {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.38;
}

.contact-page .form-grid {
  gap: 10px;
}

.contact-page .form-row {
  gap: 5px;
}

.contact-page label {
  font-size: 0.88rem;
  line-height: 1.2;
}

.contact-page input,
.contact-page select,
.contact-page textarea {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 0.92rem;
}

.contact-page textarea {
  min-height: 86px;
}

.contact-page .consent {
  gap: 8px;
  align-items: center;
  font-size: 0.86rem;
  line-height: 1.35;
}

.contact-page .consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0;
  padding: 0;
  accent-color: var(--yellow);
}

.contact-page .form-submit {
  min-height: 42px;
}

/* Unified beige background based on the references section */
:root {
  --cream: #f4f0e7;
  --cream-2: #f4f0e7;
  --paper: #f4f0e7;
}

body {
  background: var(--cream);
}

.section,
.services,
.home-services,
.why,
.references,
.pricing,
.process,
.about,
.contact,
.contact-summary,
.b2b-panel {
  --section-bg: var(--cream);
}

.home-services,
.section {
  background: var(--section-bg, var(--cream));
  box-shadow: 0 0 0 100vmax var(--section-bg, var(--cream));
}

.contact-page .contact-mouse {
  width: min(150px, 44%);
  max-width: 340px;
  margin-left: calc((min(100%, 340px) - min(150px, 44%)) / 2);
  margin-right: auto;
}

/* Pricing spacing and footer backdrop fix */
html {
  background: var(--black);
}

.pricing .pricing-action-row {
  gap: clamp(34px, 5vh, 58px);
  margin-top: 28px;
}

.pricing {
  padding-bottom: clamp(72px, 9vh, 112px);
}

/* Pro firmy card consistency */
.b2b-process {
  border-top: 5px solid var(--yellow);
}

.b2b-fit {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  max-width: min(100%, 1040px);
  margin-top: 14px;
  padding: 2px 0 2px 16px;
  overflow: visible;
  border: 0;
  border-left: 3px solid var(--yellow);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.b2b-fit::before {
  content: none;
}

.b2b-fit strong {
  color: var(--black);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.35;
  text-transform: none;
}

.b2b-fit span {
  color: var(--black);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.45;
}

.b2b-fit p {
  flex-basis: 100%;
  max-width: 760px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .b2b-fit {
    display: block;
    padding-left: 14px;
  }
}

/* Compact homepage services summary */
.home-services {
  grid-template-columns: minmax(0, 640px) minmax(260px, 340px);
  gap: clamp(30px, 5vw, 72px);
  justify-content: start;
  align-items: center;
  padding-top: clamp(28px, 4vw, 46px);
  padding-bottom: clamp(26px, 4vw, 44px);
}

.home-services-copy {
  max-width: 640px;
}

.home-services-copy h2 {
  max-width: 600px;
}

.home-services-copy p {
  max-width: 600px;
}

.home-services-action {
  align-self: center;
  width: 100%;
}

@media (max-width: 1080px) {
  .home-services {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .home-services {
    grid-template-columns: 1fr;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
