﻿:root {
  --navy: #0A0F3F;
  --yellow: #F4D33F;
  --offwhite: #F2F2F2;
  --midnight: #101A55;
  --muted: #C9CCD6;
  --bg: #FFFFFF;
  --bg-alt: #F5F7FB;
  --overlay: rgba(0, 0, 0, 0.65);
  --safety-orange: #E65C2A;
  --hi-vis: #9DBF3B;
  --ink: #333333;
  --slate: #C9CCD6;
  --sand: #F5F7FB;
  --copper: #E65C2A;
  --sunrise: #F4D33F;
  --ember: #F4D33F;
  --aqua: #9DBF3B;
  --white: #FFFFFF;
  --shadow: 0 24px 60px rgba(10, 15, 63, 0.18);
}

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

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.02em;
}

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

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

.page {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 32px 7vw 120px;
  background: var(--navy);
  color: var(--offwhite);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.45), transparent 60%),
    radial-gradient(circle at 75% 20%, rgba(244, 211, 63, 0.15), transparent 50%);
  z-index: 0;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--offwhite);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.logo-text {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
}

.nav-cta {
  background: var(--yellow);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(242, 242, 242, 0.3);
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--midnight);
  color: var(--white);
}

.hero-content {
  position: relative;
  z-index: 1;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--yellow);
  font-weight: 700;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3vw + 1.5rem, 3.8rem);
  margin: 18px 0;
}

.lead {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.btn.ghost {
  border-color: transparent;
  background: var(--midnight);
  color: var(--white);
}

.btn.primary:hover {
  background: #E6C230;
}

.btn:hover {
  transform: translateY(-1px);
}

.text-link {
  margin-top: 14px;
  display: inline-flex;
  gap: 8px;
  color: var(--yellow);
  font-weight: 600;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 0.9rem;
  color: var(--slate);
}

.hero-card {
  background: var(--bg);
  color: var(--ink);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.card-header h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.card-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.page-hero {
  position: relative;
  padding: 32px 7vw 72px;
  background: var(--navy);
  color: var(--offwhite);
}

.page-hero .hero-content {
  margin-top: 32px;
}

.breadcrumbs {
  color: var(--slate);
  font-size: 0.9rem;
}

.impact {
  padding: 90px 7vw;
  background: var(--bg);
}

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

.checklist {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  color: var(--slate);
  list-style: none;
}

.checklist li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--aqua);
}

.impact-panel {
  background: linear-gradient(135deg, rgba(244, 211, 63, 0.18), rgba(16, 26, 85, 0.08));
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel-line {
  height: 1px;
  background: rgba(31, 41, 55, 0.15);
  margin: 18px 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(2rem, 2.4vw + 1rem, 3rem);
  margin: 12px 0 16px;
}

.section-head p {
  color: var(--slate);
}

.services {
  padding: 90px 7vw;
  background: var(--bg-alt);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.service-grid article {
  background: var(--bg);
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.detail-grid {
  padding: 70px 7vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  background: var(--bg);
}

.detail-card {
  background: var(--bg);
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.detail-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--slate);
}

.detail-card li::before {
  content: "•";
  margin-right: 8px;
  color: var(--yellow);
}

.two-col {
  padding: 70px 7vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: start;
  background: var(--bg-alt);
}

.process {
  padding: 90px 7vw;
  background: var(--bg-alt);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  background: var(--bg);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.step span {
  font-weight: 700;
  color: var(--yellow);
  font-size: 1.3rem;
}

.industries {
  padding: 90px 7vw;
  background: var(--bg);
}

.community-photo {
  margin: 0 auto 28px;
  max-width: 780px;
}

.community-photo img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  text-align: center;
  color: var(--slate);
}

.industry-grid div {
  padding: 18px 12px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 999px;
  background: var(--bg-alt);
}

.cta {
  margin: 60px 7vw;
  padding: 48px;
  border-radius: 28px;
  background: var(--yellow);
  color: var(--navy);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.faq {
  padding: 90px 7vw;
  background: var(--bg-alt);
}

.faq-grid {
  display: grid;
  gap: 18px;
}

.tip-visual {
  margin: 28px auto 0;
  max-width: 760px;
  text-align: center;
}

.tip-visual img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.tip-visual figcaption {
  margin-top: 10px;
  color: #5f6678;
  font-size: 0.95rem;
}

.faq details {
  background: var(--bg);
  border-radius: 16px;
  padding: 18px 22px;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.contact {
  padding: 90px 7vw 120px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: start;
  background: var(--bg);
}

.contact-card {
  background: var(--bg);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid rgba(31, 41, 55, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: var(--slate);
}

.contact-info {
  padding: 28px;
  background: var(--bg-alt);
  border-radius: 24px;
  height: fit-content;
}

.info-panel {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.muted {
  color: var(--slate);
}

.mono {
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.footer {
  padding: 48px 7vw 32px;
  background: var(--navy);
  color: var(--offwhite);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 24px;
}

.footer a {
  color: var(--offwhite);
  display: block;
  margin: 6px 0;
}

.fine-print {
  font-size: 0.85rem;
  color: rgba(242, 242, 242, 0.7);
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    background: var(--bg);
    border-radius: 18px;
    padding: 18px;
    display: none;
    flex-direction: column;
    box-shadow: var(--shadow);
  }

  .nav-links a {
    color: var(--navy);
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .cta {
    margin: 40px 7vw;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 24px 6vw 90px;
  }

  .trust-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

.chat-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(10, 37, 64, 0.25);
}

@media (max-width: 600px) {
  .chat-fab {
    right: 16px;
    bottom: 16px;
    padding: 12px 18px;
  }
}
