:root {
  --ink: #1e2a32;
  --muted: #5c6971;
  --line: #d9e0e4;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --accent: #b93f22;
  --accent-dark: #8f2f19;
  --roof: #2f4654;
  --shadow: 0 14px 35px rgba(30, 42, 50, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-image {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #ffffff;
}

.brand-name,
.brand-location {
  display: block;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0;
}

.brand-location {
  color: var(--muted);
  font-size: 0.9rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.header-actions a {
  text-decoration: none;
}

.section {
  padding: clamp(44px, 7vw, 86px) clamp(18px, 5vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  min-height: 620px;
  background:
    linear-gradient(115deg, rgba(244, 247, 248, 0.96), rgba(244, 247, 248, 0.78)),
    linear-gradient(135deg, #ffffff 0%, #e6edf0 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 6vw, 4.9rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-text {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-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;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
  background: var(--accent);
  box-shadow: 0 8px 18px rgba(185, 63, 34, 0.22);
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--roof);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: #ffffff;
  background: var(--roof);
}

.button-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.92rem;
}

.hero-brand-card {
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(47, 70, 84, 0.95), rgba(30, 42, 50, 0.95)),
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(255, 255, 255, 0.11) 16px 18px);
  box-shadow: var(--shadow);
}

.hero-brand-card img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  border: 8px solid #ffffff;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.trust-band {
  padding-top: 24px;
  padding-bottom: 24px;
  background: var(--roof);
}

.trust-band ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.trust-band li {
  color: #ffffff;
  font-weight: 800;
}

.trust-band li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--accent);
}

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

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

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

.service-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.form-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.form-frame iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
}

.expectations {
  max-width: 960px;
}

.expectations p {
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  padding: 30px clamp(18px, 5vw, 64px) 86px;
  color: #dce5e9;
  background: var(--ink);
}

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

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

.mobile-call-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 20;
  display: none;
  padding: 15px 18px;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(30, 42, 50, 0.25);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

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

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  .header-actions {
    display: none;
  }

  .logo-image {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-brand-card {
    min-height: 240px;
    padding: 20px;
  }

  .hero-brand-card img {
    border-width: 6px;
  }

  .trust-band ul,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .form-frame iframe {
    min-height: 660px;
  }

  .mobile-call-button {
    display: block;
  }
}
