:root {
  --ink: #111418;
  --muted: #5a6472;
  --line: #dce2e8;
  --paper: #f5f7f9;
  --white: #ffffff;
  --red: #d81820;
  --red-dark: #a90911;
  --steel: #23313f;
  --night: #0a0f14;
  --shadow: 0 18px 50px rgba(11, 18, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 226, 232, 0.82);
  backdrop-filter: blur(18px);
}

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

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
  color: var(--steel);
}

.nav a,
.header-cta,
.button,
.site-footer a {
  text-decoration: none;
}

.header-cta {
  padding: 11px 16px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(18px, 5vw, 70px) 44px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 10, 15, 0.92) 0%, rgba(6, 10, 15, 0.68) 44%, rgba(6, 10, 15, 0.3) 100%),
    linear-gradient(0deg, rgba(6, 10, 15, 0.86) 0%, rgba(6, 10, 15, 0.1) 48%);
}

.hero-content {
  width: min(790px, 100%);
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.05;
}

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

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2.2vw, 23px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 6px;
  font-weight: 900;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.button.secondary.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(860px, 100%);
  margin-top: 54px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 20px;
  background: rgba(8, 14, 19, 0.62);
}

.hero-panel strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 70px);
}

.intro {
  background: var(--white);
}

.intro-grid,
.section-head,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.intro-grid p,
.section-head p,
.split-copy p,
.service-card p,
.timeline-item p,
.contact p,
address {
  color: var(--muted);
}

.services {
  background: #eef2f5;
}

.section-head {
  margin-bottom: 38px;
}

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

.service-card {
  min-height: 255px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(20, 31, 42, 0.06);
}

.service-card.highlight {
  color: var(--white);
  background: var(--steel);
  border-color: var(--steel);
}

.service-card.highlight p {
  color: rgba(255, 255, 255, 0.76);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  color: var(--red);
  background: #fff0f1;
  border-radius: 6px;
  font-weight: 900;
}

.highlight .icon {
  color: var(--white);
  background: var(--red);
}

.image-band {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.06));
}

.image-band-text {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  padding: clamp(28px, 6vw, 70px);
}

.image-band-text span {
  display: block;
  margin-bottom: 8px;
  color: #ffdadc;
  font-weight: 900;
}

.image-band-text strong {
  display: block;
  font-size: clamp(30px, 4.4vw, 62px);
  line-height: 1.04;
}

.process {
  background: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.timeline-item {
  padding: 26px;
  background: var(--white);
}

.timeline-item span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.split {
  background: #f8fafb;
}

.posts {
  background: var(--white);
}

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

.post-card {
  overflow: hidden;
  background: #f8fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-card div {
  padding: 22px;
}

.post-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--steel);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 2px;
}

.proof-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rating {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  color: var(--white);
  background: rgba(10, 15, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.rating strong {
  font-size: 52px;
  line-height: 1;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 70px);
  color: var(--white);
  background: var(--night);
}

.contact h2 {
  margin-bottom: 14px;
}

.contact p,
.contact address {
  color: rgba(255, 255, 255, 0.72);
}

address {
  margin-top: 26px;
  font-style: normal;
}

address a {
  color: var(--white);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.contact-form .wide,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.7);
}

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

.form-result {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--paper);
}

.result-box {
  width: min(620px, 100%);
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.result-box img {
  width: 110px;
  margin-bottom: 22px;
}

.result-box h1 {
  color: var(--ink);
  font-size: clamp(30px, 5vw, 48px);
}

.result-box p {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.66);
  background: #05080b;
  font-size: 14px;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .intro-grid,
  .section-head,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand img {
    width: 70px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 94vh;
    padding: 120px 18px 26px;
  }

  .hero-panel,
  .service-grid,
  .timeline,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-panel div,
  .service-card,
  .timeline-item {
    padding: 20px;
  }

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

  .proof-card {
    min-height: 380px;
  }

  .site-footer {
    flex-direction: column;
  }
}
