:root {
  --bg: #ffffff;
  --surface: #f6f8fb;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --green: #11b981;
  --green-2: #0b8a62;
  --focus: #0b8a62;
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1120px;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  padding: 10px 14px;
  background: var(--text);
  color: #fff;
  border-radius: 10px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(17, 185, 129, 0.1);
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 185, 129, 0.22);
}

.logo.small {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.02rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-tag {
  font-size: 0.86rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(11, 138, 98, 0.25);
  outline-offset: 2px;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  display: block;
  margin: 2px 0;
  opacity: 0.9;
}

.site-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-list {
  list-style: none;
  padding: 10px 16px 16px;
  margin: 0;
  display: grid;
  gap: 6px;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
}

.nav-link:hover {
  background: rgba(15, 23, 42, 0.04);
}

.nav-link:focus-visible {
  outline: 3px solid rgba(11, 138, 98, 0.25);
  outline-offset: 2px;
}

.nav-link--cta {
  background: rgba(17, 185, 129, 0.12);
  border: 1px solid rgba(17, 185, 129, 0.22);
}

.nav-link--cta:hover {
  background: rgba(17, 185, 129, 0.16);
}

.hero {
  padding: 56px 0 30px;
  background:
    radial-gradient(1100px 420px at 18% 10%, rgba(17, 185, 129, 0.16), transparent 62%),
    radial-gradient(1000px 420px at 85% 20%, rgba(15, 23, 42, 0.08), transparent 55%),
    linear-gradient(to bottom, #ffffff, #ffffff);
}

.hero-grid {
  display: grid;
  gap: 22px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--green-2);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw + 1rem, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lede {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: 3px solid rgba(11, 138, 98, 0.25);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #ffffff;
}

.btn-primary:hover {
  filter: brightness(0.98);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.14);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.07);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 0;
}

.metric {
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
}

.metric dt {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 4px;
  font-weight: 600;
}

.metric dd {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-panel {
  display: grid;
}

.panel-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 16px;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.panel-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.panel-badge {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-2);
  background: rgba(17, 185, 129, 0.12);
  border: 1px solid rgba(17, 185, 129, 0.22);
  padding: 6px 10px;
  border-radius: 999px;
}

.panel-field {
  display: grid;
  gap: 2px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 10px;
}

.panel-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.panel-value {
  font-weight: 650;
}

.panel-note {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 56px 0;
}

.section-muted {
  background: var(--surface);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  max-width: 78ch;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2vw + 1rem, 2.15rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.about-grid {
  display: grid;
  gap: 12px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.values {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  display: inline-block;
  margin-right: 10px;
  transform: translateY(1px);
}

.services-grid {
  display: grid;
  gap: 12px;
}

.service-card {
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 10px;
}

.service-card h3 {
  margin: 0;
  letter-spacing: -0.01em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  font-weight: 800;
  color: var(--green-2);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
}

.text-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.text-link:focus-visible {
  outline: 3px solid rgba(11, 138, 98, 0.25);
  outline-offset: 3px;
  border-radius: 10px;
}

.faq {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.faq-heading {
  margin: 0;
}

.faq-button {
  width: 100%;
  padding: 16px 16px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font: inherit;
  color: var(--text);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-button:hover {
  background: rgba(15, 23, 42, 0.03);
}

.faq-button:focus-visible {
  outline: 3px solid rgba(11, 138, 98, 0.25);
  outline-offset: -3px;
}

.faq-icon {
  width: 18px;
  height: 18px;
  border-radius: 99px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  position: relative;
  flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  background: var(--text);
  transform: translate(-50%, -50%);
  border-radius: 99px;
  opacity: 0.9;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 140ms ease;
}

.faq-button[aria-expanded="true"] .faq-icon {
  border-color: rgba(17, 185, 129, 0.35);
}

.faq-button[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
}

.faq-panel {
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq-panel p {
  margin: 0;
  max-width: 80ch;
}

.contact-grid {
  display: grid;
  gap: 14px;
}

.contact-card {
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.contact-card h3 {
  margin: 0 0 10px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.contact-note {
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(17, 185, 129, 0.08);
  border: 1px solid rgba(17, 185, 129, 0.18);
  color: rgba(15, 23, 42, 0.82);
  font-weight: 600;
}

.form {
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 800;
  letter-spacing: -0.01em;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  padding: 12px 12px;
  font: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(71, 85, 105, 0.72);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(11, 138, 98, 0.45);
  box-shadow: 0 0 0 4px rgba(11, 138, 98, 0.14);
}

.field-error {
  margin: 0;
  min-height: 18px;
  color: #b42318;
  font-weight: 700;
  font-size: 0.92rem;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: rgba(180, 35, 24, 0.7);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.12);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.form-success {
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(17, 185, 129, 0.22);
  background: rgba(17, 185, 129, 0.08);
  display: grid;
  gap: 8px;
}

.form-success h3 {
  margin: 0;
  letter-spacing: -0.01em;
}

.form-success p {
  margin: 0;
  color: rgba(15, 23, 42, 0.8);
  font-weight: 600;
}

.footer {
  padding: 36px 0;
  background: #0b1220;
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer-name {
  margin: 10px 0 2px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.footer-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-links a {
  padding: 8px 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-links a:hover {
  border-color: rgba(17, 185, 129, 0.45);
  color: #ffffff;
}

.footer-links a:focus-visible {
  outline: 3px solid rgba(17, 185, 129, 0.32);
  outline-offset: 2px;
}

.disclaimer {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  max-width: 90ch;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border: 0;
    background: transparent;
  }

  .nav-list {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .nav-link {
    padding: 10px 12px;
  }

  .nav-link--cta {
    padding: 10px 14px;
  }

  .hero {
    padding: 70px 0 44px;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: center;
  }

  .about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr auto 1.3fr;
    align-items: start;
  }

  .footer-legal {
    justify-self: end;
    text-align: right;
  }
}

@media (min-width: 1040px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

