:root {
  --orange: #f97316;
  --orange-dark: #c94f07;
  --blue: #66b7ee;
  --blue-soft: #e8f6ff;
  --green: #4f9d69;
  --ink: #22252a;
  --muted: #63666a;
  --line: #e6e8eb;
  --paper: #ffffff;
  --warm: #fff4ea;
  --shadow: 0 18px 50px rgba(36, 36, 36, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f8fa;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 11px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(233, 236, 239, 0.9);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  padding: 3px;
  background: #fff;
  border: 1px solid rgba(249, 115, 22, 0.16);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(36, 36, 36, 0.08);
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #3b3b3b;
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-cta,
.btn {
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(255, 116, 23, 0.24);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-tight {
  padding-top: 58px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 4.8vw, 64px);
  align-items: center;
  min-height: min(690px, calc(100vh - 88px));
  padding-top: clamp(64px, 8vw, 108px);
  padding-right: clamp(34px, 5vw, 74px);
  padding-bottom: 64px;
  padding-left: clamp(34px, 5vw, 74px);
}

.hero::before {
  position: absolute;
  inset: 42px 0 34px;
  z-index: -2;
  background: #ffffff;
  border: 1px solid #e9edf2;
  border-radius: 22px;
  box-shadow: 0 26px 80px rgba(24, 32, 42, 0.065);
  content: "";
}

.hero::after {
  display: none;
  content: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-region {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 7px 0 0;
  color: var(--orange-dark);
  font-size: 0.88rem;
  font-weight: 900;
  border-top: 2px solid rgba(249, 115, 22, 0.36);
}

.hero-region::before {
  content: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 5.9vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.lead {
  max-width: 700px;
  margin-bottom: 24px;
  color: #3d3f42;
  font-size: clamp(1.18rem, 2.15vw, 1.38rem);
}

.desktop-line {
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  text-align: center;
}

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

.btn-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  color: #1d415c;
  background: var(--blue-soft);
  box-shadow: inset 0 0 0 1px rgba(99, 179, 237, 0.5);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof-mobile {
  display: none;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: #3c3f42;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(36, 36, 36, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(36, 36, 36, 0.055);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.hero-card {
  position: relative;
  display: grid;
  align-self: center;
  gap: 18px;
  padding: clamp(26px, 3.2vw, 38px);
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, #2478a9, #163f6c);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow:
    0 34px 86px rgba(23, 63, 104, 0.32),
    0 14px 34px rgba(36, 120, 169, 0.2);
}

.hero-card-services {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.hero-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: 0;
  height: 0;
  background: none;
  content: none;
  opacity: 0;
  pointer-events: none;
}

.hero-card-head h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(1.95rem, 3vw, 2.7rem);
}

.card-kicker {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.74);
}

.hero-contact {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 10px;
}

.phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  color: #fff;
  background: var(--orange);
  border-radius: var(--radius);
  font-weight: 850;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  color: #1d415c;
  background: #e5f6ff;
  border-radius: var(--radius);
  font-weight: 850;
}

.hero-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-weight: 800;
}

.hero-mini-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-mini-list li {
  display: grid;
  gap: 2px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
}

.hero-mini-list strong {
  color: #fff;
}

.hero-mini-list span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid,
.benefit-grid,
.steps {
  display: grid;
  gap: 16px;
}

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

.service-card,
.step-card {
  padding: 24px;
  background: #fff;
  border: 1px solid #e9edf2;
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(24, 32, 42, 0.045);
}

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

.faq-item {
  padding: 24px;
  background: #fff;
  border: 1px solid #e9edf2;
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(24, 32, 42, 0.045);
}

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

.service-card {
  grid-column: span 2;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card p,
.step-card p,
.benefit span,
.estimate p,
.contact-copy p {
  color: var(--muted);
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: #185b87;
  background: #eef8ff;
  border-radius: var(--radius);
}

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

.center-action {
  margin-top: 24px;
  text-align: center;
}

.why {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100% - 1180px) / 2));
  padding-left: max(18px, calc((100% - 1180px) / 2));
  background: #ffffff;
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #edf0f3;
}

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

.benefit {
  padding: 20px;
  background: #fbfcfd;
  border: 1px solid #e9edf2;
  border-radius: var(--radius);
}

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

.benefit strong {
  margin-bottom: 8px;
}

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

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
}

.estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  background: #202124;
  border-radius: var(--radius);
}

.estimate h2,
.estimate p {
  color: #fff;
}

.estimate p {
  max-width: 720px;
  opacity: 0.82;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.legal-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(36, 36, 36, 0.06);
}

.legal-page {
  min-height: calc(100vh - 250px);
}

.legal-page h1 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.legal-card-wide {
  max-width: 820px;
}

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

.legal-card a,
.site-footer a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 30px);
  background: #fff;
  border: 1px solid #e9edf2;
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(24, 32, 42, 0.065);
}

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

.hidden-field {
  display: none;
}

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

label {
  color: #303235;
  font-size: 0.92rem;
  font-weight: 850;
}

label span {
  color: var(--muted);
  font-weight: 650;
}

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(99, 179, 237, 0.22);
}

.contact-form .btn {
  grid-column: 1 / -1;
  width: 100%;
}

.form-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note a {
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px) 96px;
  color: #fff;
  background: #242424;
  text-align: center;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: flex-start;
  justify-content: center;
}

.mobile-sticky {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(230, 232, 235, 0.9);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.mobile-sticky.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: #fff;
  background: var(--orange);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(36, 36, 36, 0.12);
  font-weight: 900;
}

.mobile-sticky a:last-child {
  color: #1d415c;
  background: var(--blue-soft);
}

@media (max-width: 960px) {
  .hero,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .desktop-line {
    display: inline;
  }

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

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .estimate {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    min-height: 76px;
    padding: 9px 18px;
  }

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

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-sticky {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .nav-cta {
    min-height: 46px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 44px 0;
  }

  .hero {
    text-align: center;
    padding-top: 30px;
    padding-right: 16px;
    padding-bottom: 30px;
    padding-left: 16px;
  }

  .hero::before {
    inset: 16px 0;
    background: #fff;
    border-color: #e9edf2;
  }

  .hero::after {
    display: none;
  }

  .hero-copy,
  .section-heading,
  .contact-copy {
    align-items: center;
    text-align: center;
  }

  .hero-region {
    align-self: center;
    padding-left: 0;
  }

  .hero-region::before {
    display: none;
  }

  h1 {
    font-size: clamp(2.18rem, 10.4vw, 2.86rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2.25rem);
  }

  .lead {
    max-width: 360px;
    margin-bottom: 16px;
    font-size: 1.08rem;
  }

  .hero-actions,
  .service-grid,
  .benefit-grid,
  .steps,
  .faq-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .hero-card {
    justify-items: center;
    text-align: center;
    gap: 10px;
    width: 100%;
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
    padding: 14px;
    background: linear-gradient(180deg, #2376a6, #153f6d);
  }

  .hero-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
  }

  .hero-proof-desktop {
    display: none;
  }

  .hero-proof-mobile {
    display: flex;
    margin-top: -8px;
    margin-bottom: 4px;
  }

  .hero-proof span {
    min-height: 30px;
    padding: 0 11px;
    font-size: 0.84rem;
  }

  .hero-card-head,
  .hero-email,
  .hero-card-services {
    width: 100%;
    text-align: center;
  }

  .hero-card-head h2 {
    margin-bottom: 0;
    font-size: 1.38rem;
  }

  .hero-card-head p {
    display: none;
  }

  .hero-mini-list {
    display: none;
  }

  .hero-contact {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .phone-link,
  .whatsapp-link {
    min-height: 43px;
    padding: 0 8px;
    font-size: 0.88rem;
  }

  .hero-email {
    min-height: 43px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    font-size: 0.9rem;
  }

  .hero-card-services {
    margin-top: 2px;
    font-size: 0.82rem;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .why {
    padding-right: 14px;
    padding-left: 14px;
  }

  .service-card,
  .step-card,
  .benefit,
  .faq-item {
    text-align: center;
  }

  .icon,
  .step-card span {
    margin-right: auto;
    margin-left: auto;
  }

  .estimate {
    width: min(100% - 28px, 1120px);
    padding: 24px;
    text-align: center;
  }

  .estimate .btn {
    width: 100%;
  }

  .contact-links {
    text-align: center;
  }

  .contact-form {
    padding: 18px;
  }

  .form-row-full {
    grid-column: auto;
  }

  .site-footer {
    display: grid;
    justify-items: center;
    text-align: center;
    padding: 30px 18px 96px;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
