:root {
  --bg: #f5f1e9;
  --panel: #fffaf0;
  --ink: #1f2933;
  --muted: #667085;
  --line: rgba(31, 41, 51, 0.13);
  --amber: #f0a500;
  --amber-dark: #b46f00;
  --blue: #183b56;
  --green: #1f7a4d;
  --shadow: 0 24px 60px rgba(24, 59, 86, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(240, 165, 0, 0.18), transparent 36rem),
    linear-gradient(180deg, var(--bg), #ffffff 54%, #f6f8fb);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 250, 240, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: #151515;
  font-weight: 900;
  border-radius: 1rem;
  background: linear-gradient(135deg, #ffd166, var(--amber));
  box-shadow: 0 10px 20px rgba(240, 165, 0, 0.24);
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  color: #171717;
  font-weight: 900;
  text-decoration: none;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 10px 20px rgba(240, 165, 0, 0.22);
  white-space: nowrap;
}

.phone-cta[data-desktop-phone-copy="true"] {
  cursor: copy;
}

.phone-copy-notice {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  padding: 0.85rem 1rem;
  color: #ffffff;
  font-weight: 900;
  background: rgba(23, 23, 23, 0.92);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.2);
  opacity: 0;
  transform: translateY(0.5rem);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.phone-copy-notice.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav a {
  padding: 0.62rem 0.85rem;
  color: var(--blue);
  text-decoration: none;
  border-radius: 999px;
}

.nav a:hover {
  background: rgba(240, 165, 0, 0.15);
}

main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  color: #17212b;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.2rem;
}

.lead {
  max-width: 760px;
  margin: 1.5rem 0 0;
  color: #334155;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 1rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.2rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
}

.button.primary {
  color: #171717;
  background: var(--amber);
  box-shadow: 0 14px 28px rgba(240, 165, 0, 0.28);
}

.button.secondary {
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--line);
}

.safe-note {
  max-width: 620px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-card,
.trust-card,
.mock-form,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: clamp(1.3rem, 4vw, 2rem);
}

.hero-card h2 {
  font-size: 1.55rem;
}

.hero-card ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(240, 165, 0, 0.12);
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--line);
}

.intro,
.trust,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: start;
}

.intro p,
.section-heading p,
.trust p,
.contact p,
.service-card p,
details p {
  color: var(--muted);
  line-height: 1.65;
}

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

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

.service-card {
  min-height: 260px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.74);
}

.icon {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: #fff4cf;
}

.process-section {
  border-radius: 2rem;
}

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

.steps li {
  position: relative;
  min-height: 220px;
  padding: 4rem 1.2rem 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: var(--blue);
  color: #fff;
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #ffd166;
  font-size: 1.5rem;
  font-weight: 900;
}

.steps span {
  display: block;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.trust-card {
  padding: 1.4rem;
}

dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

dl div {
  padding: 1rem;
  border-radius: 1rem;
  background: #fff;
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0.35rem 0 0;
  font-weight: 800;
}

.photo-placeholder {
  padding: 2rem;
  border: 1px dashed rgba(31, 41, 51, 0.28);
  border-radius: 2rem;
  background: rgba(255, 250, 240, 0.68);
}

.needed-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.needed-list div {
  padding: 1rem;
  color: var(--blue);
  font-weight: 800;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid var(--line);
}

details {
  padding: 1.1rem 1.2rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.mock-form,
.lead-form {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--blue);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 1rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #ffffff;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button[disabled] {
  padding: 1rem;
  color: #667085;
  font-weight: 900;
  border: 0;
  border-radius: 999px;
  background: #e5e7eb;
}

.lead-form button[type="submit"] {
  min-height: 3.2rem;
  padding: 1rem 1.2rem;
  color: #171717;
  font-weight: 900;
  border: 0;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 14px 28px rgba(240, 165, 0, 0.24);
  cursor: pointer;
}

.lead-form button[type="submit"]:disabled {
  color: #667085;
  background: #e5e7eb;
  box-shadow: none;
  cursor: wait;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
}

.consent a,
.site-footer a,
.contact-phone a {
  color: var(--blue);
  font-weight: 900;
}

.contact-phone {
  margin-top: 1.3rem;
  font-size: 1.25rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
  line-height: 1.5;
}

.form-status.error {
  color: #b42318;
}

.legal-page {
  max-width: 860px;
  padding: clamp(2.5rem, 7vw, 5rem) 0;
}

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

.legal-page h2 {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-phone {
    width: 100%;
  }

  .hero,
  .intro,
  .trust,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .steps,
  .needed-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  main {
    width: min(100% - 1rem, 1180px);
  }

  .nav {
    width: 100%;
  }

  .nav a {
    flex: 1 1 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.66);
  }

  .hero {
    padding-top: 2rem;
  }

  .cta-row,
  .button {
    width: 100%;
  }

  .service-grid,
  .steps,
  .needed-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .steps li {
    min-height: auto;
  }

  .photo-placeholder {
    padding: 1rem;
  }
}
