/* =========================================================
   Zereoue Williams LLC — stylesheet
   Palette: deep slate ink + coral + seafoam
   ========================================================= */

:root {
  --ink: #0D1119;
  --ink-2: #111827;
  --surface: #151C28;
  --surface-2: #1A2230;
  --line: #232C3A;
  --coral: #FF6B4A;
  --coral-dark: #E8552F;
  --seafoam: #2FD6A8;
  --seafoam-dark: #17B58C;
  --text: #ECF0F5;
  --text-soft: #C4CCD9;
  --muted: #93A0B4;
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.65;
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background-color: var(--ink);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

p {
  margin: 0;
}

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--coral);
  color: var(--ink);
  padding: 10px 18px;
  font-weight: 700;
  z-index: 200;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Header / overlay nav ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.site-header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--coral), var(--seafoam));
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
  border-radius: 10px;
}

.brand-text {
  font-size: 17px;
  color: var(--text);
}

.nav-toggle {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 46px;
  height: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--coral);
  background: var(--surface-2);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.overlay-menu-inner {
  width: 100%;
  max-width: 900px;
  padding: 120px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.overlay-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.overlay-link {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  transition: color 0.2s ease, transform 0.2s ease;
  width: fit-content;
}

.overlay-link:hover {
  color: var(--coral);
  transform: translateX(8px);
}

.overlay-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.overlay-contact {
  color: var(--seafoam);
  font-weight: 600;
}

.overlay-address {
  color: var(--muted);
  flex-basis: 100%;
}

/* ---------- Hero ---------- */

.hero-section {
  position: relative;
  background-color: var(--ink);
  padding: 150px 0 90px;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -2px;
  height: 70px;
  background: var(--surface);
  transform: rotate(-1.4deg);
  transform-origin: left bottom;
  z-index: 1;
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 640px;
  margin-bottom: 24px;
}

.hero-lead {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 34px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--coral);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--seafoam);
  color: var(--seafoam);
  transform: translateY(-2px);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-note {
  font-size: 13px;
  color: var(--muted);
}

.hero-note-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.panel-title {
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
}

.panel-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--seafoam);
  font-weight: 600;
}

.panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--seafoam);
}

.panel-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.panel-metric {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.panel-metric-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.panel-metric-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
}

.panel-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 90px;
  margin-bottom: 22px;
}

.panel-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--coral), var(--seafoam));
  border-radius: 4px 4px 2px 2px;
}

.panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.panel-foot-strong {
  color: var(--text);
  font-weight: 600;
}

/* ---------- Statement ---------- */

.statement-section {
  background-color: var(--surface);
  padding: 90px 0;
}

.statement-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 28px;
}

.statement-text {
  font-size: 32px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.statement-accent {
  color: var(--coral);
}

/* ---------- About ---------- */

.about-section {
  background-color: var(--ink);
  padding: 100px 0;
}

.about-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.section-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.about-copy p {
  color: var(--text-soft);
  margin-bottom: 18px;
  font-size: 16px;
}

.about-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 18px;
}

.about-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  flex-shrink: 0;
}

.about-card-title {
  font-size: 17px;
  margin-bottom: 8px;
}

.about-card-text {
  color: var(--muted);
  font-size: 15px;
}

/* ---------- Services ---------- */

.services-section {
  background-color: var(--ink-2);
  padding: 100px 0;
}

.services-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.services-intro {
  max-width: 340px;
  color: var(--muted);
  font-size: 15px;
}

.services-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 28px 24px;
  scroll-snap-type: x mandatory;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-snap-align: start;
  min-height: 250px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--coral);
}

.service-index {
  font-size: 13px;
  font-weight: 700;
  color: var(--seafoam);
}

.service-title {
  font-size: 21px;
}

.service-text {
  color: var(--muted);
  font-size: 15px;
  flex: 1;
}

.service-tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  border: 1px solid var(--coral);
  padding: 5px 10px;
  border-radius: 999px;
}

/* ---------- Process ---------- */

.process-section {
  background-color: var(--ink);
  padding: 100px 0;
}

.process-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.process-head {
  max-width: 620px;
  margin-bottom: 48px;
}

.process-lead {
  color: var(--muted);
  font-size: 16px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: none;
}

.process-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 3px solid var(--seafoam);
}

.process-num {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 14px;
}

.process-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-text {
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Compare ---------- */

.compare-section {
  background-color: var(--ink-2);
  padding: 100px 0;
}

.compare-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.compare-head {
  max-width: 620px;
  margin-bottom: 40px;
}

.compare-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table thead th {
  background: var(--surface-2);
  color: var(--text);
  text-align: left;
  padding: 18px 22px;
  font-weight: 700;
}

.compare-table thead th:last-child {
  color: var(--seafoam);
}

.compare-table tbody th,
.compare-table tbody td {
  padding: 16px 22px;
  text-align: left;
  border-top: 1px solid var(--line);
}

.compare-table tbody th {
  color: var(--text);
  font-weight: 600;
}

.compare-table tbody td {
  color: var(--muted);
}

.compare-table tbody td:last-child {
  color: var(--text-soft);
}

/* ---------- Stats ---------- */

.stats-section {
  background: linear-gradient(120deg, var(--coral), var(--coral-dark));
  padding: 70px 0;
}

.stats-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value,
.stat-suffix {
  font-size: 52px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- FAQ ---------- */

.faq-section {
  background-color: var(--ink);
  padding: 100px 0;
}

.faq-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}

.faq-head {
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.faq-icon {
  font-size: 24px;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
}

/* ---------- Contact ---------- */

.contact-section {
  background-color: var(--ink-2);
  padding: 100px 0;
}

.contact-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-lead {
  color: var(--text-soft);
  margin-bottom: 26px;
  max-width: 460px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-list li {
  color: var(--text-soft);
}

.contact-list a {
  color: var(--seafoam);
  font-weight: 600;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--coral);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  font-size: 14px;
  color: var(--seafoam);
  min-height: 20px;
}

/* ---------- Footer ---------- */

.site-footer {
  background-color: var(--ink);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.footer-newsletter {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}

.footer-newsletter-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-newsletter-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-newsletter-text {
  color: var(--muted);
  font-size: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  min-width: 260px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--coral);
}

.footer-main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px 28px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--seafoam);
  margin-bottom: 6px;
}

.footer-link {
  color: var(--muted);
  font-size: 15px;
  transition: color 0.2s ease;
  width: fit-content;
}

.footer-link:hover {
  color: var(--coral);
}

.footer-blurb {
  color: var(--muted);
  font-size: 15px;
  max-width: 280px;
  margin-top: 6px;
}

.footer-wordmark {
  font-size: 22vw;
  line-height: 0.8;
  font-weight: 800;
  color: var(--surface-2);
  text-align: center;
  letter-spacing: -0.03em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  margin-bottom: -6vw;
  position: relative;
  z-index: 1;
}

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .hero-section {
    padding: 120px 0 70px;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .statement-text {
    font-size: 24px;
  }

  .services-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .compare-table-wrap {
    overflow-x: auto;
  }

  .compare-table {
    min-width: 560px;
  }

  .overlay-link {
    font-size: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input {
    min-width: 0;
  }
}
