:root {
  --blue: #2c3e50;
  --copper: #f7b731;
  --white: #ffffff;
  --beige: #f5f5f5;
  --text: #1f2937;
  --muted: #5b6472;
  --border: #e5e7eb;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 6px 18px rgba(15, 23, 42, 0.06);
  --radius: 18px;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src:
    url("../fonts/InterVariable.woff2") format("woff2-variations"),
    url("../fonts/InterVariable.woff2") format("woff2");
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  letter-spacing: -0.01em;
  --bg-x: 0px;
  --bg-y: 0px;
  --bolt-x: 0%;
  --bolt-y: 0px;
  --bolt-opacity: 0;
  background-image:
    linear-gradient(90deg, rgba(44, 62, 80, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(44, 62, 80, 0.025) 1px, transparent 1px);
  background-position: var(--bg-x) var(--bg-y);
  background-size: 28px 28px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: var(--bolt-opacity);
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(247, 183, 49, 0.18) 48%, rgba(247, 183, 49, 0.35) 50%, rgba(247, 183, 49, 0.18) 52%, transparent 100%),
    linear-gradient(90deg, rgba(247, 183, 49, 0.06) 0%, transparent 65%);
  background-size: 420px 100%, 100% 100%;
  background-position: var(--bolt-x) var(--bolt-y), 0 0;
  filter: blur(0.4px);
  mix-blend-mode: normal;
}

main, header, footer {
  position: relative;
  z-index: 1;
}

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

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  gap: 1.2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-stack {
  display: block;
  height: 100px;
  width: auto;
  max-width: clamp(220px, 24vw, 360px);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-weight: 500;
}

.site-nav a {
  color: var(--text);
  padding: 0.4rem 0.6em;
}

/* .site-nav .cta-link {
  padding: 0;
} */

.site-nav a.active {
  color: var(--blue);
  font-weight: 600;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--copper), #ffcf6b);
  color: #1d1d1d;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(247, 183, 49, 0.4);
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-link:hover,
.cta-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(247, 183, 49, 0.45);
}

.cta-link:focus-visible {
  outline: 2px solid #1d1d1d;
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.hero {
  padding: 5rem 0 3.5rem;
  background:
    radial-gradient(circle at top left, rgba(247, 183, 49, 0.14), transparent 45%),
    linear-gradient(180deg, rgba(44, 62, 80, 0.06), transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

h1 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background: var(--blue);
  color: var(--white);
}

.btn.secondary {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--white);
}

.btn.accent {
  background: var(--copper);
  color: #1a1a1a;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
}

.trust-badges {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.trust-badges span {
  background: var(--beige);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

.brand-stack {
  display: block;
  width: min(360px, 74vw);
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 10px 30px rgba(15, 23, 42, 0.12));
}

.hero-card .service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.6rem;
  margin: 1.2rem 0 1.5rem;
}

.hero-card .service-list div {
  background: var(--beige);
  padding: 0.5rem 0.8rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
}

.card-badge {
  align-self: flex-start;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(44, 62, 80, 0.08);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-card .card-intro {
  color: var(--muted);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.coverage-block {
  border: 1px dashed rgba(44, 62, 80, 0.2);
  border-radius: 14px;
  padding: 1rem;
}

.coverage-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.coverage-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--text);
}

.coverage-list li {
  position: relative;
  padding-left: 1.1rem;
  font-weight: 500;
}

.coverage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
}

.coverage-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.coverage-meta span {
  background: var(--beige);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.section {
  padding: 3.6rem 0;
}

.section.subtle {
  background: var(--beige);
}

.split {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.cards {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.services-layout {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: start;
}

.services-summary {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: 640px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
  position: relative;
}

.services-summary::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(44, 62, 80, 0.15);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.5rem 0 1.8rem;
}

.stat {
  background: var(--beige);
  padding: 0.8rem 0.6rem;
  border-radius: 12px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.stat strong {
  display: block;
  color: var(--text);
  font-weight: 600;
}

.services-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

@media (max-width: 960px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.6rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.js .service-detail {
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.js .service-row[data-expanded="true"] .service-detail {
  margin-top: 0.6rem;
  max-height: 320px;
  opacity: 1;
}


.service-toggle {
  display: none;
  margin-top: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(44, 62, 80, 0.18);
  background: rgba(44, 62, 80, 0.08);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s ease, border 0.2s ease, color 0.2s ease;
}

.js .service-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-toggle::after {
  content: "+";
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.js .service-row[data-expanded="true"] .service-toggle::after {
  content: "-";
}

.service-toggle:hover,
.service-toggle:focus-visible {
  background: rgba(44, 62, 80, 0.18);
  border-color: rgba(44, 62, 80, 0.3);
}

.service-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.js .service-row[data-expanded="true"] .service-toggle {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.service-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.service-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.service-top h3 {
  margin: 0;
}

.service-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(44, 62, 80, 0.12);
  font-size: 1.3rem;
  color: var(--blue);
}

.service-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  align-items: stretch;
}

.service-meta {
  display: inline-flex;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--copper);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.service-body .service-meta {
  align-self: center;
}

.service-body .service-toggle {
  align-self: flex-start;
}

.service-detail {
  margin-top: 0.6rem;
  color: var(--muted);
  line-height: 1.6;
}

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

.section-header {
  margin-bottom: 1.5rem;
}

.center {
  margin-top: 2rem;
  text-align: center;
}

.checklist {
  list-style: none;
  margin-top: 1.2rem;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.checklist li::before {
  content: "✔";
  color: var(--copper);
  margin-right: 0.6rem;
}

.text-link {
  color: var(--blue);
  font-weight: 600;
}

.callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, rgba(247, 183, 49, 0.12), var(--beige));
}

.page-hero .brand-stack {
  margin-bottom: 1.2rem;
  width: min(400px, 88vw);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
}

@media (max-width: 720px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-layout > .card {
  height: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-form .form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label,
.form-group .label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea,
.contact-form input[type="file"] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.checkbox-grid label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--beige);
  font-weight: 500;
}

.contact-form button[type="submit"] {
  margin-top: 0.5rem;
  align-self: flex-start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  height: 100%;
}

.contact-details .cta-row {
  margin-top: auto;
  padding-top: 1rem;
}

.contact-channels {
  list-style: none;
  margin: 1rem 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.contact-channels li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.4rem 0.2rem;
  border-radius: 12px;
}

.channel-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-area {
  margin-top: 0.6rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(44, 62, 80, 0.2);
  background: rgba(44, 62, 80, 0.08);
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: background 0.2s ease, border 0.2s ease, color 0.2s ease;
}

.contact-chip:hover,
.contact-chip:focus-visible {
  background: rgba(44, 62, 80, 0.18);
  border-color: rgba(44, 62, 80, 0.35);
  color: var(--blue);
}

.contact-chip:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.8rem;
}


.site-footer {
  background: #101826;
  color: #e2e8f0;
  padding: 1.5rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.site-footer a {
  color: #e2e8f0;
}

.footer-social {
  display: flex;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.35);
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(226, 232, 240, 0.6);
  transform: translateY(-1px);
}

.social-link:focus-visible {
  outline: 2px solid rgba(226, 232, 240, 0.8);
  outline-offset: 3px;
}

.social-icon {
  width: 18px;
  height: 18px;
  display: block;
}

@media (min-width: 720px) {
  .footer-grid {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .footer-bottom {
    text-align: left;
  }

  .footer-social {
    margin-left: auto;
    order: 2;
    justify-content: flex-end;
  }

  .footer-bottom {
    order: 1;
  }
}

.footer-bottom {
  text-align: center;
  margin: 0;
  color: #94a3b8;
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    right: 5%;
    top: 72px;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: none;
    min-width: 200px;
  }

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

  .site-nav .cta-link {
    width: 100%;
  }

  .services-summary::after {
    inset: 10px;
  }
}

@media (max-width: 560px) {
  .contact-chip {
    width: 100%;
    justify-content: center;
  }

  .cta-row {
    flex-direction: column;
    align-items: center;
  }

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

  .brand-stack {
    width: min(280px, 92vw);
  }

  .logo-stack {
    height: 56px;
    max-width: clamp(170px, 60vw, 260px);
  }

  .btn {
    width: 100%;
  }

  .cta-row .btn {
    width: auto;
    align-self: center;
    min-width: clamp(220px, 80vw, 320px);
  }
}
