:root {
  --bg: #090b0f;
  --bg-soft: #12161d;
  --ink: #101217;
  --muted: #59636f;
  --line: #e3e6eb;
  --paper: #ffffff;
  --paper-soft: #f4f6f8;
  --red: #c91827;
  --red-dark: #9e101b;
  --red-soft: #fff0f1;
  --whatsapp: #176b4d;
  --whatsapp-dark: #11533c;
  --anthracite: #171c24;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(8, 12, 20, .16);
  --shadow-soft: 0 14px 34px rgba(8, 12, 20, .08);
  --container: min(1140px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--red);
  color: #fff;
  transform: translateY(-140%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 11, 15, .9);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 206px;
  height: auto;
  border-radius: 6px;
}

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

.site-nav a,
.header-call {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav a {
  padding: 10px 13px;
  color: rgba(255, 255, 255, .78);
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, .07);
}

.header-call {
  padding: 12px 16px;
  color: #fff;
  background: var(--red);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(201, 24, 39, .24);
  white-space: nowrap;
}

.header-call:hover,
.btn-primary:hover {
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: transparent;
}

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

.hero {
  position: relative;
  min-height: min(840px, calc(100svh - 78px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--bg);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-workshop.webp");
  background-position: center right;
  background-size: cover;
  transform: scale(1.015);
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 42%, rgba(201, 24, 39, .2), rgba(201, 24, 39, 0) 24%),
    linear-gradient(90deg, rgba(7, 9, 12, .98) 0%, rgba(7, 9, 12, .9) 38%, rgba(7, 9, 12, .5) 70%, rgba(7, 9, 12, .2) 100%),
    linear-gradient(0deg, rgba(7, 9, 12, .42), rgba(7, 9, 12, .1));
}

.hero-content {
  position: relative;
  padding: 96px 0 112px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff5965;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(46px, 7.8vw, 90px);
}

.hero-subtitle {
  max-width: 710px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(19px, 2.1vw, 25px);
}

.hero-actions,
.quick-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

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

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 34px rgba(201, 24, 39, .25);
}

.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
}

.btn-light:hover {
  background: #eceff3;
}

.btn-outline {
  border-color: rgba(255, 255, 255, .48);
  color: #fff;
  background: rgba(255, 255, 255, .04);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
}

.btn-outline.dark {
  border-color: #c5cbd4;
  color: var(--ink);
  background: #fff;
}

.btn-outline.dark:hover {
  border-color: var(--ink);
  background: #f1f3f6;
}

.btn-whatsapp {
  color: #fff;
  background: var(--whatsapp-dark);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 16px 34px rgba(17, 83, 60, .26);
}

.btn-whatsapp:hover {
  background: var(--whatsapp);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-proof li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .065);
  font-size: 14px;
  font-weight: 700;
}

.trust-strip {
  background: var(--bg);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

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

.trust-grid div {
  padding: 28px;
  background: rgba(255, 255, 255, .045);
}

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

.trust-grid strong {
  font-size: 18px;
}

.trust-grid span {
  color: rgba(255, 255, 255, .7);
  margin-top: 4px;
}

.section {
  padding: 104px 0;
}

.section-muted {
  background: var(--paper-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 56px;
}

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

.section h2,
.promo h2,
.page-hero h1 {
  font-size: clamp(34px, 5vw, 60px);
}

.lead {
  margin: 0;
  color: #3e4651;
  font-size: clamp(18px, 2vw, 22px);
}

.text-block p,
.content-panel p,
.legal-content p,
.legal-content li {
  color: #424955;
  font-size: 18px;
}

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

.service-grid.full {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
}

.icon-sprite {
  display: none;
}

.service-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(250, 251, 252, 1));
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 24, 39, .24);
  box-shadow: 0 24px 54px rgba(8, 12, 20, .13);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
  color: var(--red);
  background: linear-gradient(135deg, rgba(201, 24, 39, .12), rgba(201, 24, 39, .035));
  border: 1px solid rgba(201, 24, 39, .2);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

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

.service-card h2,
.service-card h3 {
  font-size: 24px;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.section-link {
  margin-top: 24px;
}

.text-link {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.hours-section {
  padding: 82px 0;
  background: #fff;
}

.hours-grid,
.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 34px;
  align-items: center;
}

.hours-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(201, 24, 39, .12), rgba(201, 24, 39, 0) 42%),
    var(--anthracite);
  color: #fff;
  box-shadow: var(--shadow);
}

.hours-card h3 {
  font-size: 26px;
}

.hours-card p {
  margin: 12px 0 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
  font-weight: 800;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-list span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(8, 12, 20, .05);
  font-weight: 800;
}

.promo {
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(201, 24, 39, .16), rgba(201, 24, 39, 0) 44%),
    linear-gradient(135deg, #171c24 0%, #080a0d 72%);
  color: #fff;
  border-block: 1px solid rgba(255, 255, 255, .08);
}

.promo.compact {
  margin-bottom: 0;
}

.promo-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.promo p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

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

.process-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.process-card .card-icon {
  margin-bottom: 26px;
  background: #fff;
}

.process-card h3 {
  font-size: 24px;
}

.process-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.faq-item {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  font-size: 22px;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.local-seo {
  background: #fff;
}

.region-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.region-grid span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(8, 12, 20, .05);
  font-weight: 700;
}

.contact-band {
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(201, 24, 39, .2), rgba(201, 24, 39, 0) 42%),
    var(--anthracite);
}

.contact-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.contact-band .section-kicker {
  color: #ff5965;
}

.contact-band h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.contact-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .82);
}

.page-main {
  background: #fff;
}

.page-hero {
  padding: 96px 0 82px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 10, 14, .98), rgba(23, 28, 36, .92)),
    url("assets/hero-workshop.webp") center right / cover;
}

.narrow {
  max-width: 880px;
}

.content-grid,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.content-panel,
.contact-card,
.request-form,
.legal-content {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.dark-panel {
  color: #fff;
  background: var(--anthracite);
  border-color: var(--anthracite);
}

.dark-panel p {
  color: rgba(255, 255, 255, .78);
}

.contact-card {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(201, 24, 39, .16), rgba(201, 24, 39, 0) 46%),
    var(--anthracite);
  border-color: var(--anthracite);
}

.contact-card p,
.contact-card dd {
  color: rgba(255, 255, 255, .82);
}

.contact-list {
  margin: 28px 0 0;
}

.contact-list div {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.contact-list dt {
  color: rgba(255, 255, 255, .54);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 800;
}

.contact-list a,
.site-footer a {
  text-decoration: none;
}

.request-form {
  display: grid;
  gap: 11px;
}

.form-head {
  margin-bottom: 10px;
}

label {
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cdd3dc;
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}

input:focus,
textarea:focus,
.btn:focus,
.site-nav a:focus,
.header-call:focus,
.nav-toggle:focus,
.floating-whatsapp:focus {
  outline: 3px solid rgba(226, 29, 43, .35);
  outline-offset: 2px;
}

input:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(201, 24, 39, .08);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-content {
  max-width: 880px;
}

.legal-content h2 {
  margin-top: 32px;
  font-size: 26px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 26px 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.legal-content p {
  margin: 12px 0 0;
}

.legal-content a {
  color: var(--red);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.legal-content .legal-emphasis {
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  background: var(--red-soft);
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  padding: 56px 0;
  color: rgba(255, 255, 255, .72);
  background: #090b0e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 42px;
  align-items: start;
}

.site-footer p {
  margin: 18px 0 0;
}

.site-footer img {
  width: 190px;
  height: auto;
  border-radius: 6px;
}

.site-footer address {
  font-style: normal;
}

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

.site-footer a {
  color: #fff;
  font-weight: 700;
}

.mobile-cta {
  display: none;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0)),
    var(--whatsapp-dark);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(7, 12, 18, .26), 0 10px 26px rgba(17, 83, 60, .24);
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0)),
    var(--whatsapp);
  box-shadow: 0 22px 50px rgba(7, 12, 18, .3), 0 12px 30px rgba(23, 107, 77, .28);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 30px, 1140px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 14px 15px 20px;
    background: #0b0d10;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .header-call {
    margin-left: 0;
  }

  .split,
  .promo-inner,
  .contact-band-inner,
  .hours-grid,
  .trust-panel,
  .content-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-grid.full,
  .process-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 78px 0 94px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 96px;
  }

  .nav-wrap {
    min-height: 70px;
    gap: 12px;
  }

  .brand img {
    width: 172px;
  }

  .header-call {
    display: none;
  }

  .site-nav {
    top: 70px;
  }

  .hero-media {
    background-position: center;
    opacity: .62;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 9, 12, .98), rgba(7, 9, 12, .83));
  }

  h1 {
    font-size: 40px;
    line-height: 1.04;
  }

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

  .service-grid,
  .service-grid.full,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .btn,
  .hero-actions,
  .quick-actions,
  .contact-buttons {
    width: 100%;
  }

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

  .hero-proof {
    gap: 8px;
  }

  .hero-proof li {
    width: 100%;
    border-radius: var(--radius);
  }

  .hero-proof li:nth-child(3) {
    display: none;
  }

  .content-panel,
  .contact-card,
  .request-form,
  .legal-content {
    padding: 24px;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 82px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    background: rgba(9, 11, 15, .92);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .32);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: #fff;
    background: var(--red);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-cta a + a {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}
