:root {
  --canvas: #f7f2e8;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #fffdf7;
  --surface-dark: #181c20;
  --ink: #121417;
  --muted: #646a73;
  --line: rgba(18, 20, 23, 0.1);
  --accent: #c5ff3d;
  --accent-deep: #8ab814;
  --accent-soft: rgba(197, 255, 61, 0.18);
  --warm: #ff9950;
  --shadow-lg: 0 24px 70px rgba(24, 28, 34, 0.12);
  --shadow-md: 0 16px 40px rgba(24, 28, 34, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 153, 80, 0.14), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(197, 255, 61, 0.24), transparent 22%),
    linear-gradient(180deg, #fffaf3 0%, var(--canvas) 50%, #fff8ef 100%);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 20, 23, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 20, 23, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 82%);
  pointer-events: none;
  z-index: -1;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 54px 0;
}

.eyebrow,
.panel-label {
  margin: 0 0 14px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(1.95rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.14rem;
}

p {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 24;
  padding: 18px 0;
  transition:
    padding 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    backdrop-filter 0.2s ease;
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(247, 242, 232, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(18, 20, 23, 0.08);
}

.header-inner,
.site-nav,
.hero-actions,
.spotlight-top,
.signal-head,
.metric-row,
.mini-service-item,
.process-grid,
.contact-points,
.footer-inner,
.services-layout {
  display: flex;
}

.header-inner {
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #eef3b5 58%, #fff);
  font-family: "Unbounded", sans-serif;
  box-shadow: var(--shadow-md);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy small,
.lead,
.section-text,
.footer-copy,
.contact-form label,
.contact-copy p,
.process-card p,
.category-header p,
.service-description small {
  color: var(--muted);
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  font-size: 0.8rem;
}

.site-nav {
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.site-nav a {
  font-weight: 700;
}

.header-cta {
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.hero {
  padding-top: 36px;
}

.hero-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.hero-copy {
  padding: 42px 0 12px;
}

.lead {
  margin-top: 22px;
  max-width: 760px;
  font-size: 1.12rem;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-badges li,
.availability-pill,
.category-count,
.ticker-track span {
  border-radius: 999px;
  font-weight: 800;
}

.hero-badges li {
  padding: 12px 16px;
  border: 1px solid rgba(18, 20, 23, 0.08);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-md);
}

.hero-panel,
.mini-service-list,
.faq-list {
  display: grid;
  gap: 18px;
}

.panel-card,
.category-card,
.process-card,
.contact-form {
  border: 1px solid rgba(18, 20, 23, 0.08);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}

.panel-card,
.category-card,
.contact-form {
  border-radius: var(--radius-xl);
}

.panel-card,
.process-card,
.contact-form {
  padding: 24px;
}

.spotlight-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
    linear-gradient(130deg, rgba(197, 255, 61, 0.16), rgba(255, 153, 80, 0.14));
}

.spotlight-top,
.signal-head,
.mini-service-item,
.footer-inner {
  align-items: center;
  justify-content: space-between;
}

.availability-pill {
  padding: 10px 14px;
  background: var(--accent-soft);
}

.spotlight-card h2 {
  margin-top: 18px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.spotlight-card p {
  margin-top: 16px;
}

.metric-row {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.metric-row div {
  flex: 1 1 150px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(18, 20, 23, 0.04);
}

.metric-row strong,
.service-meta strong {
  display: block;
  font-family: "Unbounded", sans-serif;
}

.mini-service-item {
  padding: 13px 0;
  gap: 16px;
  border-bottom: 1px solid rgba(18, 20, 23, 0.08);
}

.mini-service-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ticker {
  overflow: hidden;
  padding-top: 8px;
}

.ticker-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 16px;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  padding: 12px 16px;
  border: 1px solid rgba(18, 20, 23, 0.08);
  background: rgba(255, 255, 255, 0.66);
  white-space: nowrap;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.section-heading {
  max-width: 840px;
  margin-bottom: 32px;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-text {
  margin-top: 16px;
  font-size: 1.02rem;
}

.services-switcher,
.service-panels {
  display: grid;
  gap: 18px;
}

.services-tabs {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}

.services-tab {
  display: grid;
  min-width: 0;
  gap: 10px;
  justify-items: center;
  align-content: start;
  padding: 4px 4px 0;
  color: var(--muted);
  text-align: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.services-tab:hover {
  transform: translateY(-2px);
  color: var(--ink);
}

.services-tab-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(18, 20, 23, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-md);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.services-tab-icon svg {
  width: 24px;
  height: 24px;
}

.services-tab-text {
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.05;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.services-tab.is-active {
  color: var(--ink);
}

.services-tab.is-active .services-tab-icon {
  background: #15db9a;
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.service-panel[hidden] {
  display: none;
}

.category-card {
  overflow: hidden;
  scroll-margin-top: 92px;
}

.category-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 24px 0;
}

.category-header > div {
  min-width: 0;
}

.category-header h3 {
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.category-header p {
  overflow-wrap: anywhere;
}

.category-count {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  padding: 10px 14px;
  border: 1px solid rgba(18, 20, 23, 0.08);
  background: rgba(18, 20, 23, 0.04);
  white-space: nowrap;
}

.category-body {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.service-table {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(18, 20, 23, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.service-table-head,
.service-row-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr) minmax(90px, 0.38fr);
  gap: 20px;
}

.service-table-head {
  padding: 24px 28px;
  background: #4a4a4a;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
}

.service-table .category-body {
  margin-top: 0;
}

.service-row {
  display: block;
  margin-top: 0;
}

.service-row + .service-row {
  border-top: 1px solid rgba(18, 20, 23, 0.08);
}

.service-row-content {
  align-items: start;
  padding: 22px 28px;
  background: transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.service-row:hover .service-row-content {
  background: rgba(197, 255, 61, 0.18);
}

.service-name,
.service-description {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.service-name strong {
  display: block;
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

.service-description small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.service-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
  min-width: 0;
}

.service-table-head span:last-child,
.service-meta {
  text-align: right;
}

.service-meta strong {
  font-size: 1.02rem;
}

.process-grid {
  gap: 18px;
  flex-wrap: wrap;
}

.process-card {
  flex: 1 1 240px;
  border-radius: var(--radius-lg);
}

.process-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--accent);
  font-family: "Unbounded", sans-serif;
}

.contact-points {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
}

.contact-points a,
.contact-points span {
  font-size: 1.02rem;
  font-weight: 700;
}

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

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(18, 20, 23, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(197, 255, 61, 0.55);
}

.form-status {
  min-height: 24px;
  font-size: 0.95rem;
}

.site-footer {
  padding: 26px 0 36px;
}

.footer-inner {
  gap: 18px;
  align-items: flex-end;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 20, 23, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .services-tabs {
    gap: 6px;
  }

  .services-tab-icon {
    width: 50px;
    height: 50px;
  }

  .services-tab-icon svg {
    width: 22px;
    height: 22px;
  }

  .services-tab-text {
    font-size: 0.72rem;
  }

  .service-table-head,
  .service-row-content {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.3fr) minmax(82px, 0.45fr);
    gap: 16px;
  }

}

@media (max-width: 860px) {
  .section {
    padding: 42px 0;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .services-tabs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px 8px;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 5;
    margin-left: 0;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: flex-start;
  }

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

  .header-cta {
    display: none;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .category-header {
    grid-template-columns: 1fr;
    padding: 20px 20px 0;
  }

  .service-table {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .service-table-head {
    display: none;
  }

  .service-row {
    margin-top: 12px;
    border-top: 0;
  }

  .service-row:first-child {
    margin-top: 0;
  }

  .service-row-content {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(18, 20, 23, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-md);
  }

  .service-name::before,
  .service-description::before,
  .service-meta::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .service-meta {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

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

  .services-tab-icon {
    width: 48px;
    height: 48px;
  }

  .services-tab-text {
    font-size: 0.74rem;
  }

  .panel-card,
  .category-card,
  .process-card,
  .contact-form {
    padding: 20px;
  }

  .hero-badges {
    display: grid;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
