:root {
  --teal: #008aa4;
  --teal-dark: #006b7e;
  --teal-soft: #dff6f7;
  --green: #75b82a;
  --green-dark: #4f911c;
  --green-soft: #edf9e7;
  --yellow: #f6c43b;
  --yellow-soft: #fff3c7;
  --ink: #34383d;
  --muted: #6a737d;
  --line: #dce8ea;
  --soft: #f4faf9;
  --white: #ffffff;
  --shadow: 0 16px 36px rgba(0, 72, 85, 0.12);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.top-strip {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--green-dark));
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 8px 16px;
  text-align: center;
}

.top-strip span {
  display: inline-block;
}

.nav-wrap,
.section,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

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

.brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.brand-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 10px 12px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--soft);
  color: var(--teal-dark);
}

.button {
  align-items: center;
  background: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  text-decoration: none;
}

.button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button.green {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button.green:hover {
  background: #3f7616;
  border-color: #3f7616;
}

.button.secondary {
  background: var(--white);
  color: var(--teal-dark);
}

.button.secondary:hover {
  background: var(--soft);
}

.hero {
  background:
    linear-gradient(90deg, rgba(0, 138, 164, 0.08), rgba(117, 184, 42, 0.08)),
    linear-gradient(135deg, #ffffff 0%, #edf9f7 48%, #fff8df 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 48px;
  min-height: calc(100vh - 110px);
  padding: 68px 0;
  align-items: center;
}

.eyebrow {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.16;
  margin: 0;
}

h1 {
  color: var(--ink);
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  max-width: 780px;
}

h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h3 {
  color: var(--teal-dark);
  font-size: 1.18rem;
}

.lead {
  color: var(--muted);
  font-size: 1.18rem;
  max-width: 680px;
}

.hero-kicker {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span,
.pill {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 8px 12px;
}

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

.hero-card {
  background: var(--white);
  border: 1px solid rgba(0, 138, 164, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 32px;
  position: relative;
}

.hero-card::before {
  background: linear-gradient(90deg, var(--teal), var(--green), var(--yellow));
  border-radius: 8px 8px 0 0;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.hero-logo {
  margin: 0 auto 22px;
  width: min(310px, 100%);
}

.quick-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.quick-list li {
  background: var(--soft);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding-left: 14px;
  padding: 12px 12px 12px 14px;
}

.section {
  padding: 72px 0;
}

.section.tight {
  padding-top: 44px;
}

.section-header {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
  max-width: 780px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.card.feature {
  background: linear-gradient(135deg, var(--white), var(--soft));
  border-color: rgba(0, 138, 164, 0.2);
}

.card strong {
  color: var(--teal-dark);
}

.band {
  background: linear-gradient(135deg, var(--soft), #ffffff);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.service-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--teal), var(--green));
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-size: 1.3rem;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  margin-bottom: 16px;
  width: 44px;
}

.mission-panel {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  border-radius: 8px;
  padding: 32px;
}

.mission-panel h2,
.mission-panel h3,
.mission-panel .lead {
  color: var(--white);
}

.mission-panel .eyebrow {
  color: var(--yellow-soft);
}

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

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  border-radius: 8px;
  padding: 20px;
}

.value-card:nth-child(2) {
  border-top-color: var(--green);
}

.value-card:nth-child(3) {
  border-top-color: var(--yellow);
}

.value-card:nth-child(4) {
  border-top-color: var(--teal-dark);
}

.value-card:nth-child(5) {
  border-top-color: var(--green-dark);
}

.service-area {
  background: var(--yellow-soft);
  border: 1px solid rgba(246, 196, 59, 0.55);
  border-radius: 8px;
  padding: 22px;
}

.service-area strong {
  color: #5d4700;
}

.page-hero {
  background: linear-gradient(135deg, #ffffff 0%, #eef9f7 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero .section {
  padding: 58px 0;
}

.content {
  max-width: 860px;
}

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

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  color: var(--green);
  content: "\2713";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  color: var(--ink);
  font-weight: 700;
  gap: 6px;
}

input,
select,
textarea {
  border: 1px solid #cbdadd;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.notice {
  background: #fff8e2;
  border: 1px solid rgba(246, 196, 59, 0.55);
  border-radius: 8px;
  color: #604a00;
  padding: 16px;
}

.contact-panel {
  background: var(--teal-dark);
  color: var(--white);
}

.contact-panel h2,
.contact-panel .lead {
  color: var(--white);
}

.contact-panel a {
  color: var(--white);
  font-weight: 800;
}

.site-footer {
  background: #263238;
  color: #e9f1f2;
}

.footer-inner {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 42px 0;
}

.footer-inner a {
  color: #e9f1f2;
}

.footer-logo {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 8px;
  width: 96px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #b9c7ca;
  font-size: 0.88rem;
  padding: 16px 0;
  text-align: center;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    left: 0;
    padding: 14px 16px 20px;
    position: absolute;
    right: 0;
    top: 100%;
  }

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

  .hero-grid,
  .grid.three,
  .grid.two,
  .value-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 48px 0;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    height: 54px;
    width: 54px;
  }

  .brand-title {
    font-size: 0.86rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
  }

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

  .hero-card,
  .card {
    padding: 20px;
  }
}


.honeypot {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.success-box {
  border-top: 6px solid var(--green);
}

.error-box {
  border-top: 6px solid #b42318;
}


.required-note {
  background: var(--green-soft);
  border: 1px solid rgba(117, 184, 42, 0.32);
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 700;
  margin: 0;
  padding: 12px 14px;
}

.required {
  color: #b42318;
}

.checkbox-line {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  padding: 12px 14px;
}

.checkbox-line input {
  min-height: auto;
  width: auto;
}

.icon-link,
.social-links a {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.icon-link img,
.social-links img {
  flex: 0 0 auto;
  height: 18px;
  max-height: 18px;
  width: 18px;
  max-width: 18px;
  object-fit: contain;
}


/* Small contact and social media icons */
.icon-link > img,
.social-links a > img,
.social-links.large a > img,
.site-footer .icon-link > img,
.site-footer .social-links a > img {
  height: 18px !important;
  width: 18px !important;
  max-height: 18px !important;
  max-width: 18px !important;
}

.social-links {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.social-links a {
  font-weight: 800;
  text-decoration: none;
}

.social-links.large {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links.large a {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-dark);
  padding: 8px 12px;
}

.site-footer .social-links.large a,
.site-footer .social-links a {
  color: #e9f1f2;
}

.compact-cards {
  margin-top: 22px;
}

@media (max-width: 900px) {
  .social-links.large {
    display: grid;
  }
}


/* Desktop logo reliability */
.brand img,
.hero-logo,
.footer-logo {
  display: block;
  flex: 0 0 auto;
  opacity: 1;
  visibility: visible;
}

.brand {
  flex-shrink: 0;
}


/* Final fixed-size PNG contact/social icons */
img[src*="email.png"],
img[src*="instagram.png"],
img[src*="tiktok.png"],
.icon-link img,
.social-links img {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  object-fit: contain !important;
  display: inline-block !important;
}
