:root {
  --ink: #10231f;
  --muted: #61716c;
  --paper: #f6f7f2;
  --white: #ffffff;
  --line: #d9e0da;
  --lime: #c8f560;
  --lime-dark: #9ecb35;
  --mint: #dff5eb;
  --forest: #173d33;
  --orange: #ff7a4d;
  --shadow: 0 24px 70px rgba(16, 35, 31, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.announcement {
  padding: 9px 20px;
  color: #fff;
  background: var(--forest);
  font-size: 0.84rem;
  text-align: center;
}

.announcement a {
  color: var(--lime);
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(217, 224, 218, 0.78);
  background: rgba(246, 247, 242, 0.92);
  backdrop-filter: blur(16px);
}

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

.logo {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.logo-mark {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 11px;
  background: var(--forest);
}

.logo-mark::before,
.logo-mark::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.logo-mark::before {
  width: 25px;
  height: 25px;
  top: 7px;
  left: 7px;
  background: var(--lime);
}

.logo-mark::after {
  width: 17px;
  height: 34px;
  top: 2px;
  left: -3px;
  background: var(--forest);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: auto;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: #3e514b;
  font-size: 0.93rem;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a.active::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lime-dark);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: 30px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  content: "";
  transition: 0.2s ease;
  background: currentColor;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  padding: 11px 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #0d241d;
  background: var(--lime);
  box-shadow: 0 10px 28px rgba(158, 203, 53, 0.22);
}

.btn-primary:hover {
  background: #d4ff73;
  box-shadow: 0 14px 34px rgba(158, 203, 53, 0.3);
}

.btn-dark {
  color: #fff;
  background: var(--ink);
}

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

.btn-light {
  color: var(--ink);
  background: #fff;
}

.btn-small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  top: -260px;
  right: -140px;
  border: 100px solid rgba(200, 245, 96, 0.23);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: #436258;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: var(--lime-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 850;
}

.highlight {
  position: relative;
  white-space: nowrap;
}

.highlight::after {
  position: absolute;
  z-index: -1;
  height: 19%;
  right: 0;
  bottom: 8%;
  left: 0;
  content: "";
  transform: rotate(-1deg);
  background: var(--lime);
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.84rem;
}

.trust-row span {
  display: flex;
  gap: 7px;
  align-items: center;
}

.check {
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
}

.system-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  color: #fff;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.system-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 42px 42px;
}

.system-orbit {
  position: absolute;
  width: 340px;
  height: 340px;
  right: -20px;
  bottom: -40px;
  border: 1px solid rgba(200, 245, 96, 0.35);
  border-radius: 50%;
}

.system-orbit::before,
.system-orbit::after {
  position: absolute;
  inset: 55px;
  border: 1px solid rgba(200, 245, 96, 0.28);
  border-radius: 50%;
  content: "";
}

.system-orbit::after {
  inset: 110px;
  background: var(--lime);
  box-shadow: 0 0 60px rgba(200, 245, 96, 0.25);
}

.system-content {
  position: relative;
  z-index: 2;
  padding: 35px;
}

.system-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #c8d7d2;
  font-size: 0.8rem;
}

.live-status {
  display: flex;
  gap: 8px;
  align-items: center;
}

.live-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(200, 245, 96, 0.12);
}

.system-title {
  max-width: 330px;
  margin-top: 90px;
  font-size: 2.2rem;
}

.metric-stack {
  display: grid;
  position: absolute;
  z-index: 3;
  gap: 12px;
  right: 24px;
  bottom: 24px;
  left: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.metric {
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(10, 32, 26, 0.72);
  backdrop-filter: blur(10px);
}

.metric strong {
  display: block;
  color: var(--lime);
  font-size: 1.45rem;
}

.metric small {
  color: #aebdb8;
}

.section {
  padding: 100px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-dark {
  color: #fff;
  background: var(--ink);
}

.section-mint {
  background: var(--mint);
}

.section-heading {
  display: flex;
  gap: 40px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-heading h2,
.page-hero h1 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
}

.section-heading p {
  max-width: 480px;
  margin-bottom: 4px;
  color: var(--muted);
}

.section-dark .section-heading p {
  color: #a9b9b3;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-number {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 58px;
  place-items: center;
  border-radius: 13px;
  color: var(--forest);
  background: var(--mint);
  font-size: 0.82rem;
  font-weight: 850;
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 1.45rem;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: steps;
}

.process-step {
  position: relative;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  counter-increment: steps;
}

.process-step::before {
  display: block;
  margin-bottom: 50px;
  color: var(--lime);
  content: "0" counter(steps);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.process-step h3 {
  font-size: 1.25rem;
}

.process-step p {
  color: #9fb0aa;
  font-size: 0.9rem;
}

.results-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.result-panel {
  padding: 34px;
  border-radius: 26px;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.chart {
  display: flex;
  height: 220px;
  gap: 14px;
  align-items: end;
  padding: 30px 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.bar {
  position: relative;
  flex: 1;
  height: var(--height);
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.12);
}

.bar.active {
  background: var(--lime);
}

.chart-labels {
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  color: #9db0aa;
  font-size: 0.72rem;
}

.result-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}

.result-stat {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

.result-stat strong {
  display: block;
  color: #fff;
  font-size: 1.6rem;
}

.result-stat span {
  color: #9db0aa;
  font-size: 0.78rem;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #4f625c;
}

.check-list .check {
  flex: 0 0 auto;
  margin-top: 3px;
}

.testimonial {
  padding: 90px 0;
  text-align: center;
}

.quote {
  max-width: 880px;
  margin: 0 auto 26px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.quote-mark {
  margin-bottom: 15px;
  color: var(--lime-dark);
  font-size: 4rem;
  line-height: 1;
}

.quote-by {
  color: var(--muted);
  font-size: 0.88rem;
}

.cta {
  padding: 80px 0;
}

.cta-card {
  display: flex;
  min-height: 330px;
  padding: 56px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  border-radius: 30px;
  color: #fff;
  background: var(--forest);
}

.cta-card::after {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -90px;
  bottom: -210px;
  border: 70px solid var(--lime);
  border-radius: 50%;
  content: "";
  opacity: 0.9;
}

.cta-card > * {
  position: relative;
  z-index: 2;
}

.cta-card h2 {
  max-width: 700px;
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.cta-card p {
  max-width: 600px;
  margin-bottom: 0;
  color: #b6c5c0;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
  margin-left: 40px;
}

.page-hero {
  padding: 92px 0 70px;
  text-align: center;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero h1 {
  margin-right: auto;
  margin-left: auto;
}

.page-hero p {
  max-width: 690px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.detail-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.detail-card .service-number {
  margin-bottom: 30px;
}

.detail-card h2 {
  margin-bottom: 14px;
  font-size: 1.75rem;
}

.detail-card p {
  color: var(--muted);
}

.tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.tag {
  padding: 7px 11px;
  border-radius: 999px;
  color: #496158;
  background: var(--mint);
  font-size: 0.75rem;
  font-weight: 750;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  display: flex;
  min-height: 510px;
  padding: 32px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.price-card.featured {
  border-color: var(--forest);
  color: #fff;
  background: var(--forest);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}

.price-badge {
  align-self: flex-start;
  margin-bottom: 24px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--lime);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card h2 {
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.price-card > p {
  min-height: 74px;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card.featured > p,
.price-card.featured .price-note,
.price-card.featured .price-list {
  color: #afc0ba;
}

.price {
  margin: 18px 0 2px;
  font-size: 2.55rem;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.price-note {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.78rem;
}

.price-list {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: #52635e;
  list-style: none;
  font-size: 0.88rem;
}

.price-card.featured .price-list {
  border-color: rgba(255, 255, 255, 0.14);
}

.price-list li::before {
  margin-right: 9px;
  color: var(--lime-dark);
  content: "✓";
  font-weight: 900;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  padding: 25px 0;
  align-items: center;
  justify-content: space-between;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 750;
}

.faq-question::after {
  content: "+";
  color: var(--lime-dark);
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  max-width: 730px;
  padding: 0 0 25px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  display: grid;
  min-height: 500px;
  padding: 28px;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  border-radius: 28px;
  background: var(--forest);
}

.visual-block {
  display: flex;
  padding: 22px;
  align-items: flex-end;
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 750;
}

.visual-block:nth-child(2),
.visual-block:nth-child(3) {
  color: var(--forest);
  background: var(--lime);
}

.visual-block:nth-child(4) {
  background: #285448;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  padding: 30px;
  border-top: 3px solid var(--lime-dark);
  background: #fff;
}

.value-card h3 {
  font-size: 1.3rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 35px;
}

.contact-detail {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.contact-detail small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
}

.contact-detail strong {
  font-size: 0.95rem;
}

.form-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.8rem;
  font-weight: 750;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  color: var(--ink);
  background: #fbfcf9;
}

.field input,
.field select {
  height: 49px;
  padding: 0 14px;
}

.field textarea {
  min-height: 145px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--lime-dark);
  box-shadow: 0 0 0 3px rgba(200, 245, 96, 0.25);
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--forest);
  background: var(--mint);
  font-size: 0.85rem;
  font-weight: 650;
}

.form-status.visible {
  display: block;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 9px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.legal-nav a {
  color: var(--muted);
  font-size: 0.84rem;
}

.legal-nav a:hover {
  color: var(--ink);
}

.legal-content {
  max-width: 780px;
}

.legal-note {
  margin-bottom: 35px;
  padding: 16px 18px;
  border-left: 3px solid var(--lime-dark);
  background: var(--mint);
  color: #415951;
  font-size: 0.85rem;
}

.legal-content h2 {
  margin: 45px 0 14px;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li {
  color: #53645f;
  font-size: 0.93rem;
}

.legal-content li {
  margin-bottom: 9px;
}

.dashboard-shell {
  display: grid;
  min-height: calc(100vh - 79px);
  grid-template-columns: 250px 1fr;
  background: #edf0eb;
}

.dashboard-sidebar {
  display: flex;
  padding: 30px 22px;
  flex-direction: column;
  color: #fff;
  background: var(--ink);
}

.dashboard-sidebar .logo {
  margin-bottom: 45px;
}

.dash-nav {
  display: grid;
  gap: 8px;
}

.dash-nav a {
  display: flex;
  gap: 12px;
  padding: 11px 13px;
  align-items: center;
  border-radius: 10px;
  color: #aebdb8;
  font-size: 0.88rem;
  font-weight: 650;
}

.dash-nav a.active,
.dash-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.dash-icon {
  width: 19px;
  color: var(--lime);
  text-align: center;
}

.sidebar-help {
  margin-top: auto;
  padding: 18px;
  border-radius: 15px;
  background: #1f4037;
}

.sidebar-help strong,
.sidebar-help span {
  display: block;
}

.sidebar-help span {
  margin: 6px 0 14px;
  color: #9eb0aa;
  font-size: 0.76rem;
}

.dashboard-main {
  min-width: 0;
  padding: 34px;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.dash-header h1 {
  margin: 0;
  font-size: 2rem;
}

.dash-header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--lime);
  font-size: 0.78rem;
  font-weight: 850;
}

.dash-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.dash-stat {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.dash-stat small {
  color: var(--muted);
}

.dash-stat strong {
  display: block;
  margin-top: 8px;
  font-size: 1.55rem;
}

.trend {
  color: #4e7a34;
  font-size: 0.72rem;
  font-weight: 750;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
  margin-top: 18px;
}

.dash-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}

.dash-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.dash-card h2 {
  margin: 0;
  font-size: 1.15rem;
}

.project-row {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 15px;
  padding: 15px 0;
  align-items: center;
  border-top: 1px solid #e8ece7;
  font-size: 0.82rem;
}

.project-name strong,
.project-name small {
  display: block;
}

.project-name small {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: #496158;
  background: var(--mint);
  font-size: 0.7rem;
  font-weight: 750;
}

.progress {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8ece7;
}

.progress span {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: var(--lime-dark);
}

.activity-list {
  display: grid;
  gap: 22px;
}

.activity {
  display: grid;
  position: relative;
  grid-template-columns: 10px 1fr;
  gap: 12px;
}

.activity::before {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  content: "";
  background: var(--lime-dark);
}

.activity strong,
.activity small {
  display: block;
}

.activity strong {
  font-size: 0.82rem;
}

.activity small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.site-footer {
  padding: 70px 0 25px;
  color: #fff;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 55px;
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0;
  color: #9eb0aa;
  font-size: 0.88rem;
}

.footer-contact {
  color: var(--lime);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-column h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 10px 0;
  color: #9eb0aa;
  font-size: 0.84rem;
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #768b84;
  font-size: 0.76rem;
}

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

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

@media (max-width: 1000px) {
  .nav-links,
  .nav-actions .btn-outline {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 78px 0 0;
    margin: 0;
    padding: 40px 25px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--paper);
  }

  .nav-links.open a {
    font-size: 1.4rem;
  }

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

  .hero-grid {
    gap: 50px;
  }

  .system-card {
    min-height: 450px;
  }

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

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

  .price-card.featured {
    transform: none;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .dashboard-shell {
    grid-template-columns: 78px 1fr;
  }

  .dashboard-sidebar {
    padding: 25px 13px;
  }

  .dashboard-sidebar .logo span:last-child,
  .dash-nav a span:last-child,
  .sidebar-help {
    display: none;
  }

  .dashboard-sidebar .logo {
    justify-content: center;
  }

  .dash-nav a {
    justify-content: center;
  }
}

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

  .announcement {
    font-size: 0.74rem;
  }

  .nav {
    min-height: 68px;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .nav-links.open {
    top: 68px;
  }

  .hero {
    padding: 62px 0 50px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .highlight {
    white-space: normal;
  }

  .trust-row,
  .section-heading,
  .cta-card,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .system-content {
    padding: 26px;
  }

  .system-title {
    margin-top: 60px;
    font-size: 1.75rem;
  }

  .metric-stack {
    grid-template-columns: 1fr;
  }

  .metric:nth-child(2),
  .metric:nth-child(3) {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    gap: 18px;
  }

  .service-grid,
  .detail-grid,
  .pricing-grid,
  .values-grid,
  .result-stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-step::before {
    margin-bottom: 18px;
  }

  .cta-card {
    padding: 36px 28px;
  }

  .cta-actions {
    margin: 30px 0 0;
    flex-wrap: wrap;
  }

  .page-hero {
    padding: 65px 0 45px;
  }

  .price-card {
    min-height: auto;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-nav {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .dashboard-shell {
    display: block;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 22px 15px;
  }

  .dash-stat-grid,
  .dash-grid {
    grid-template-columns: 1fr;
  }

  .project-row {
    grid-template-columns: 1fr;
    gap: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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