:root {
  --blue: #155bd7;
  --orange: #ff6815;
  --ink: #101a31;
  --muted: #586174;
  --line: #dce2ec;
  --page: linear-gradient(135deg, #bfdbfe 0%, #3b82f6 45%, #1d4ed8 100%);
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  background-attachment: fixed;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 10; padding: .75rem 1rem; background: white; }
.skip-link:focus { top: 1rem; }

.page-shell {
  width: min(1080px, calc(100% - 2rem));
  margin: 2rem auto;
  overflow: hidden;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(8, 30, 84, .28);
}

.hero {
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 7vw, 5rem);
  text-align: center;
}
.logo-crop {
  width: min(650px, 100%);
  height: clamp(145px, 25vw, 215px);
  margin: 0 auto;
  overflow: hidden;
}
.main-logo { display: block; width: 100%; height: auto; transform: translateY(-18%); }
.business-name, .section-label {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; line-height: 1.05; }
h1 { max-width: 780px; margin: 0 auto 1.4rem; font-size: clamp(3rem, 7vw, 5.5rem); letter-spacing: -.055em; }
h2 { margin-bottom: 1.5rem; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.035em; }
.intro { max-width: 680px; margin: 0 auto 2rem; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.button {
  display: inline-flex;
  min-height: 52px;
  padding: .8rem 1.4rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: var(--orange);
  color: white;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { background: #e85608; }

.services { padding: clamp(3rem, 6vw, 5rem); background: #f8faff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services > h2 { text-align: center; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.service-grid article { min-height: 150px; padding: 1.4rem; background: white; border: 1px solid var(--line); border-radius: 14px; }
.service-grid span { color: var(--blue); font-size: .76rem; font-weight: 800; }
.service-grid h3 { margin: 2.4rem 0 0; font-size: 1.2rem; }

.contact-section { padding: clamp(3rem, 7vw, 5rem); text-align: center; }
.contact-section h2 { margin-bottom: 1rem; }
.phone-number { display: inline-block; color: var(--ink); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -.04em; text-decoration: none; }
.contact-actions { display: flex; justify-content: center; gap: .75rem; margin-top: 1.7rem; }
.button-secondary { background: var(--blue); }
.button-secondary:hover { background: #0d49b7; }

footer { width: min(1080px, calc(100% - 2rem)); margin: 0 auto; padding: 0 0 2rem; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: .8rem; }
footer img { width: 120px; height: 48px; object-fit: cover; }

@media (max-width: 760px) {
  .page-shell { margin-top: 1rem; }
  .service-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .service-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: .4rem; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
