:root {
  --navy: #071542;
  --navy-2: #101b48;
  --red: #d90f1f;
  --red-2: #b90817;
  --green: #1fae54;
  --text: #121525;
  --muted: #636a7b;
  --line: #e4e7ee;
  --soft: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(7, 21, 66, 0.12);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

.icon {
  display: block;
  flex: 0 0 auto;
  height: 1.25rem;
  width: 1.25rem;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(228, 231, 238, 0.75);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  left: 0;
  padding: 14px max(18px, calc((100vw - 1120px) / 2));
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

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

.brand-mark {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  width: 42px;
}

.brand-mark img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.brand strong {
  color: var(--navy);
  display: block;
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 0.79rem;
  margin-top: 3px;
}

.header-phone {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  display: none;
  font-weight: 800;
  padding: 10px 14px;
}

.menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--navy);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

main {
  overflow: hidden;
  padding-bottom: 92px;
}

.hero,
.assistant-section,
.trust-section,
.process-section,
.faq-section,
.site-footer {
  margin-inline: auto;
  max-width: 1120px;
  padding-inline: 18px;
}

.hero {
  padding-top: 30px;
}

.location,
.section-kicker,
.eyebrow {
  align-items: center;
  color: var(--red);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 7px;
  margin: 0 0 16px;
}

.location .icon,
.section-kicker .icon {
  height: 1rem;
  width: 1rem;
}

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

h1 {
  color: var(--navy);
  font-size: clamp(2.65rem, 14vw, 5.25rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 18px;
  max-width: 820px;
}

.hero-copy {
  color: #34394c;
  font-size: clamp(1.12rem, 4.8vw, 1.45rem);
  line-height: 1.42;
  margin-bottom: 24px;
  max-width: 680px;
}

.hero-copy::before {
  background: var(--red);
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  margin-bottom: 22px;
  width: 72px;
}

.priority-panel,
.assistant-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.priority-panel {
  margin: 26px 0;
  overflow: hidden;
}

.priority-panel h2 {
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.18;
  margin: 0;
  padding: 18px 20px 14px;
}

.priority-panel ul {
  list-style: none;
  margin: 0;
  padding: 0 18px;
}

.step-item {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: #181b29;
  display: grid;
  font-size: 1.08rem;
  font-weight: 700;
  gap: 14px;
  grid-template-columns: auto 1fr;
  line-height: 1.22;
  min-height: 74px;
  padding: 12px 0;
}

.step-item:last-child {
  border-bottom: 0;
}

.step-check {
  align-items: center;
  background: var(--navy);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  height: 45px;
  justify-content: center;
  width: 45px;
}

.step-check .icon {
  height: 1.55rem;
  width: 1.55rem;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.cta {
  align-items: center;
  border-radius: 8px;
  display: flex;
  gap: 18px;
  justify-content: center;
  min-height: 86px;
  padding: 18px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.cta:hover,
.cta:focus-visible,
.bottom-bar a:hover,
.bottom-bar a:focus-visible {
  transform: translateY(-1px);
}

.cta .icon {
  height: 2rem;
  width: 2rem;
}

.cta strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.12;
}

.cta small {
  display: block;
  font-size: 0.98rem;
  margin-top: 3px;
}

.cta-primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: var(--white);
  box-shadow: 0 14px 34px rgba(217, 15, 31, 0.25);
}

.cta-whatsapp {
  background: var(--white);
  border: 2px solid var(--green);
  color: var(--green);
}

.cta-whatsapp span {
  color: var(--text);
}

.qualification {
  align-items: flex-start;
  color: var(--navy);
  display: flex;
  gap: 12px;
  line-height: 1.35;
  margin: 22px 0 26px;
}

.qualification .icon {
  height: 2rem;
  margin-top: 1px;
  width: 2rem;
}

.qualification p {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}

.inspection-image {
  aspect-ratio: 1.53;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(7, 21, 66, 0.16);
  display: block;
  height: auto;
  margin: 0 0 28px;
  object-fit: cover;
  width: 100%;
}

.assistant-section {
  background: linear-gradient(180deg, #f7f9fe 0%, #ffffff 100%);
  border-radius: 8px 8px 0 0;
  margin-top: 0;
  padding-block: 28px 38px;
}

.assistant-section h2,
.trust-section h2,
.process-section h2,
.faq-section h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 6.8vw, 3rem);
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 18px;
}

.assistant-form {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0 16px 16px;
}

.choice-group,
.field {
  border: 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: 18px 0;
}

.choice-group legend,
.field span {
  align-items: center;
  color: var(--navy);
  display: flex;
  font-weight: 800;
  gap: 7px;
  margin-bottom: 10px;
}

.choice-group legend .icon {
  color: #8c93a4;
  height: 1rem;
  width: 1rem;
}

.choice-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.choice,
input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  min-height: 52px;
  outline: none;
  width: 100%;
}

.choice {
  background: var(--white);
  font-weight: 800;
}

.choice.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

input,
select,
textarea {
  background: #fff;
  padding: 14px;
}

textarea {
  line-height: 1.45;
  resize: vertical;
}

.consent-row {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  line-height: 1.45;
}

.consent-row input {
  flex: 0 0 auto;
  height: 20px;
  margin-top: 2px;
  min-height: 0;
  width: 20px;
}

.consent-row span {
  color: var(--muted);
  display: inline;
  font-size: 0.9rem;
  font-weight: 650;
  margin: 0;
}

.consent-row a,
.legal-links a {
  color: var(--navy);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bot-field {
  height: 1px !important;
  left: -9999px !important;
  opacity: 0 !important;
  overflow: hidden;
  pointer-events: none;
  position: absolute !important;
  top: -9999px !important;
  width: 1px !important;
}

input:focus,
select:focus,
textarea:focus,
.choice:focus-visible,
.submit-button:focus-visible,
.menu-button:focus-visible,
.cta:focus-visible,
.header-phone:focus-visible {
  box-shadow: 0 0 0 4px rgba(7, 21, 66, 0.13);
}

.submit-button {
  background: var(--red);
  border: 0;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  margin-top: 16px;
  min-height: 58px;
  padding: 16px;
  transition:
    background 160ms ease,
    transform 120ms ease,
    opacity 160ms ease;
}

.submit-button:hover {
  background: var(--red-2);
}

.submit-button:active {
  transform: translateY(1px) scale(0.99);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.82;
}

.submit-button.is-loading span::after {
  animation: dots 1s infinite steps(4, end);
  content: "";
}

.form-message {
  border-radius: 8px;
  font-weight: 750;
  line-height: 1.45;
  margin: 14px 0 0;
  padding: 12px;
}

.form-message.is-success {
  background: rgba(31, 174, 84, 0.1);
  border: 1px solid rgba(31, 174, 84, 0.32);
  color: #136534;
}

.form-message.is-error {
  background: rgba(217, 15, 31, 0.08);
  border: 1px solid rgba(217, 15, 31, 0.28);
  color: #9b0713;
}

@keyframes dots {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75%,
  100% {
    content: "...";
  }
}

.trust-section,
.process-section,
.faq-section {
  padding-block: 48px;
}

.trust-grid {
  display: grid;
  gap: 14px;
}

.trust-grid article {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.trust-grid span {
  color: var(--red);
  font-weight: 900;
}

.trust-grid h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin: 8px 0;
}

.trust-grid p,
.process-list span,
.faq-section p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.process-section {
  background: var(--navy);
  color: var(--white);
  max-width: none;
}

.process-section > * {
  margin-inline: auto;
  max-width: 1120px;
}

.process-section h2,
.process-section .eyebrow {
  color: var(--white);
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.process-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  counter-increment: process;
  display: grid;
  gap: 6px;
  padding: 20px 0;
}

.process-list li::before {
  color: var(--red);
  content: "0" counter(process);
  font-weight: 900;
}

.process-list strong {
  font-size: 1.2rem;
}

.process-list span {
  color: rgba(255, 255, 255, 0.72);
}

.faq-section details {
  border-top: 1px solid var(--line);
  padding: 17px 0;
}

.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.3;
}

.faq-section p {
  padding-top: 10px;
}

.site-footer {
  color: var(--muted);
  display: grid;
  gap: 8px;
  padding-block: 36px 48px;
}

.site-footer strong {
  color: var(--navy);
}

.service-note {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  max-width: 720px;
}

.site-footer a {
  color: var(--navy);
  font-weight: 800;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 12px;
}

.bottom-bar {
  background: var(--white);
  bottom: 0;
  box-shadow: 0 -10px 30px rgba(7, 21, 66, 0.18);
  display: grid;
  grid-template-columns: 1fr 1fr;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 25;
}

.bottom-bar a {
  align-items: center;
  color: var(--white);
  display: flex;
  gap: 10px;
  justify-content: center;
  min-height: 74px;
  padding: 10px;
}

.bottom-bar a:first-child {
  background: var(--red);
}

.bottom-bar a:last-child {
  background: var(--green);
}

.bottom-bar .icon {
  height: 1.9rem;
  width: 1.9rem;
}

.bottom-bar strong,
.bottom-bar small {
  display: block;
  line-height: 1.1;
}

.bottom-bar strong {
  font-size: 1.12rem;
}

.bottom-bar small {
  font-size: 0.76rem;
  margin-top: 2px;
}

@media (min-width: 760px) {
  .header-phone {
    display: inline-flex;
  }

  .menu-button {
    display: none;
  }

  .hero {
    display: grid;
    gap: 0 42px;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
    padding-top: 64px;
  }

  .location,
  .hero h1,
  .hero-copy,
  .priority-panel,
  .hero-actions,
  .qualification {
    grid-column: 1;
  }

  .inspection-image {
    align-self: start;
    grid-column: 2;
    grid-row: 2 / span 6;
    margin-top: 8px;
    position: sticky;
    top: 96px;
  }

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

  .assistant-section,
  .trust-section,
  .faq-section {
    padding-inline: max(18px, calc((100vw - 1120px) / 2));
  }

  .assistant-form {
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
  }

  .field-wide,
  .submit-button,
  .form-message {
    grid-column: 1 / -1;
  }

  .trust-grid,
  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid {
    gap: 28px;
  }

  .process-section {
    padding-inline: max(18px, calc((100vw - 1120px) / 2));
  }

  .process-list {
    gap: 26px;
  }

  .process-list li {
    border-top: 0;
  }

  .bottom-bar {
    display: none;
  }

  main {
    padding-bottom: 0;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.42rem;
  }

  .cta strong {
    font-size: 1.18rem;
  }

  .bottom-bar strong {
    font-size: 1rem;
  }
}
