/* ============================================================
   DYERS — Computer Systems Design and Related Services
   Light theme · forest-green accent · clipboard nav · stamp hero
   ============================================================ */

:root {
  --forest: #166534;
  --forest-deep: #0f4c26;
  --forest-soft: #1b7a43;
  --mint: #DCFCE7;
  --mint-soft: #F0FDF4;
  --cream: #F5F8F4;
  --paper: #FFFFFF;
  --ink: #16241C;
  --ink-soft: #3E4A43;
  --ink-muted: #5C6B62;
  --line: #DFE8E1;
  --line-strong: #C7D5CC;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  overflow-x: hidden;
}

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

a {
  color: var(--forest);
  text-decoration: none;
}

a:hover {
  color: var(--forest-deep);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: var(--ink);
  font-weight: 700;
}

/* ============================================================
   CLIPBOARD NAVIGATION
   ============================================================ */

.clipboard-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(22, 101, 52, 0.06);
}

.clipboard-nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.clipboard-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.clipboard-mark {
  position: relative;
  width: 34px;
  height: 40px;
  background: var(--forest);
  border-radius: 6px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.08);
}

.clipboard-mark::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 12px;
  background: var(--forest-deep);
  border-radius: 4px;
}

.clipboard-mark__line {
  position: absolute;
  left: 8px;
  height: 3px;
  background: var(--mint);
  border-radius: 2px;
}

.clipboard-mark__line--1 {
  top: 13px;
  width: 18px;
}

.clipboard-mark__line--2 {
  top: 22px;
  width: 12px;
}

.clipboard-nav__wordmark {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--forest);
}

.clipboard-nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin-left: auto;
}

.clipboard-nav__links a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

.clipboard-nav__links a:hover {
  color: var(--forest);
}

.clipboard-nav__cta {
  background: var(--forest);
  color: #FFFFFF;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: background-color 0.2s ease;
}

.clipboard-nav__cta:hover {
  background: var(--forest-deep);
  color: #FFFFFF;
}

.clipboard-nav__toggle {
  display: none;
  background: var(--forest);
  border: none;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}

.clipboard-nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============================================================
   RUBBER STAMP HERO
   ============================================================ */

.stamp-hero {
  background: var(--cream);
  padding: 84px 0 96px;
  overflow: hidden;
}

.stamp-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.stamp-hero__eyebrow {
  display: inline-block;
  background: var(--mint);
  color: var(--forest-deep);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.stamp-hero h1 {
  font-size: 3.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 620px;
}

.stamp-hero h1 span {
  color: var(--forest);
}

.stamp-hero__sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 34px;
}

.stamp-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: transform 0.15s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--forest);
  color: #FFFFFF;
  box-shadow: 0 10px 24px -10px rgba(22, 101, 52, 0.55);
}

.btn--primary:hover {
  background: var(--forest-deep);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}

.btn--ghost:hover {
  background: var(--mint);
  transform: translateY(-2px);
}

.stamp-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.stamp {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 12px solid var(--forest);
  background: var(--paper);
  transform: rotate(-14deg);
  box-shadow: 0 30px 60px -20px rgba(15, 76, 38, 0.45);
}

.stamp::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  border: 3px solid var(--forest-soft);
  background: var(--mint);
}

.stamp__dots {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border-top: 4px dotted var(--forest);
  border-bottom: 4px dotted var(--forest);
  border-left: 4px dotted transparent;
  border-right: 4px dotted transparent;
}

.stamp__check {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 104px;
  height: 56px;
  border-left: 16px solid var(--forest);
  border-bottom: 16px solid var(--forest);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transform: translate(-52%, -66%) rotate(-45deg);
}

.stamp-hero__badge {
  position: absolute;
  bottom: 18px;
  right: 6px;
  background: var(--forest);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 10px;
  box-shadow: 0 12px 26px -12px rgba(22, 101, 52, 0.6);
}

/* ============================================================
   STATEMENT ROW
   ============================================================ */

.statement-row {
  background: var(--forest);
  color: #FFFFFF;
  padding: 88px 0;
}

.statement-row h2 {
  color: #FFFFFF;
  font-size: 2.3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: -0.01em;
}

.statement-row p {
  color: var(--mint);
  max-width: 720px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 1.1rem;
}

/* ============================================================
   STATS — BIG NUMERALS
   ============================================================ */

.stats-section {
  padding: 88px 0;
  background: var(--paper);
}

.stats-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.stats-section__head h2 {
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.stats-section__head p {
  color: var(--ink-muted);
}

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

.stat-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  background: var(--cream);
}

.stat-card__num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
}

.stat-card__label {
  margin-top: 12px;
  color: var(--ink-soft);
  font-weight: 600;
}

.stat-card__note {
  margin-top: 6px;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

/* ============================================================
   SERVICES — HORIZONTAL SCROLL ROW
   ============================================================ */

.services-section {
  padding: 88px 0;
  background: var(--cream);
}

.services-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.services-section__head h2 {
  font-size: 2.1rem;
  max-width: 520px;
}

.services-section__head p {
  color: var(--ink-muted);
  max-width: 420px;
}

.service-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 4px 28px;
  scroll-snap-type: x mandatory;
}

.service-scroll::-webkit-scrollbar {
  height: 10px;
}

.service-scroll::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 999px;
}

.service-scroll::-webkit-scrollbar-track {
  background: var(--mint-soft);
  border-radius: 999px;
}

.service-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(15, 76, 38, 0.35);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* ============================================================
   PROCESS — NUMBERED 01–05
   ============================================================ */

.process-section {
  padding: 88px 0;
  background: var(--paper);
}

.process-section__head {
  max-width: 640px;
  margin-bottom: 60px;
}

.process-section__head h2 {
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.process-section__head p {
  color: var(--ink-muted);
}

.process-list {
  list-style: none;
  position: relative;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: var(--line-strong);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 0 0 40px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step__num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--forest);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px var(--mint);
}

.process-step__body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.process-step__body p {
  color: var(--ink-muted);
  max-width: 640px;
}

/* ============================================================
   PLANS — TWO COLUMN COMPARISON TABLE
   ============================================================ */

.plans-section {
  padding: 88px 0;
  background: var(--cream);
}

.plans-section__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.plans-section__head h2 {
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.plans-section__head p {
  color: var(--ink-muted);
}

.plans-table {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
}

.plans-table__row {
  display: contents;
}

.plans-table__cell {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}

.plans-table__row:last-child .plans-table__cell {
  border-bottom: none;
}

.plans-table__label {
  background: var(--mint-soft);
  font-weight: 700;
  color: var(--ink);
}

.plans-table__header {
  background: var(--forest);
  color: #FFFFFF;
  font-weight: 700;
  justify-content: center;
  text-align: center;
}

.plans-table__header--deep {
  background: var(--forest-deep);
}

.plans-table__cell--center {
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
}

.plans-table__check {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  font-weight: 800;
  line-height: 22px;
  text-align: center;
  font-size: 0.8rem;
}

.plans-table__dash {
  color: var(--ink-muted);
  font-weight: 700;
}

.plans-table__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
}

.plans-table__price span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mint);
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-section {
  padding: 88px 0;
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-section h2 {
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.contact-section__intro {
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--forest);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  color: var(--ink);
}

.contact-detail a,
.contact-detail span {
  color: var(--ink-soft);
}

.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
}

.contact-form label {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--forest);
  border-color: var(--forest);
}

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

.contact-form__status {
  margin-top: 12px;
  font-weight: 700;
  color: var(--forest);
  min-height: 1.5em;
}

/* ============================================================
   SPLIT CTA BAND
   ============================================================ */

.split-cta {
  background: var(--forest);
  padding: 0;
}

.split-cta__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.split-cta__text {
  padding: 72px 56px 72px 0;
}

.split-cta__text h2 {
  color: #FFFFFF;
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.split-cta__text p {
  color: var(--mint);
  font-size: 1.05rem;
}

.split-cta__action {
  background: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  padding: 40px;
}

.split-cta__action .btn {
  background: var(--mint);
  color: var(--forest-deep);
}

.split-cta__action .btn:hover {
  background: #FFFFFF;
  color: var(--forest-deep);
}

.split-cta__action small {
  color: var(--mint);
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--paper);
  border-top: 4px solid var(--forest);
  padding: 64px 0 40px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.site-footer h4 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 18px;
}

.site-footer p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  max-width: 320px;
}

.site-footer ul {
  list-style: none;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul a {
  color: var(--ink-soft);
  font-weight: 600;
}

.site-footer ul a:hover {
  color: var(--forest);
}

.site-footer__contact li {
  color: var(--ink-soft);
}

.site-footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .stamp-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stamp-hero h1 {
    font-size: 2.4rem;
  }

  .stamp-hero__visual {
    order: -1;
  }

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

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

  .split-cta__inner {
    grid-template-columns: 1fr;
  }

  .split-cta__text {
    padding: 56px 0 32px;
  }

  .plans-table {
    grid-template-columns: 160px 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .clipboard-nav__links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    display: none;
    margin-left: 0;
  }

  .clipboard-nav__links.open {
    display: flex;
  }

  .clipboard-nav__links li {
    border-bottom: 1px solid var(--line);
  }

  .clipboard-nav__links a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
  }

  .clipboard-nav__cta {
    display: inline-block;
    margin-top: 14px;
    text-align: center;
  }

  .clipboard-nav__toggle {
    display: flex;
  }

  .clipboard-nav__cta-desktop {
    display: none;
  }

  .stamp {
    width: 240px;
    height: 240px;
  }

  .stamp__check {
    width: 84px;
    height: 46px;
    border-left-width: 13px;
    border-bottom-width: 13px;
  }

  .statement-row h2 {
    font-size: 1.7rem;
  }

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

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 18px;
  }

  .process-step__num {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }

  .process-list::before {
    left: 29px;
  }

  .plans-table {
    grid-template-columns: 1fr;
    overflow-x: auto;
    display: block;
  }

  .plans-table__row {
    display: grid;
    grid-template-columns: 120px 1fr;
  }

  .plans-table__header {
    grid-column: 1 / -1;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
