:root {
  --bg: #fbfbf8;
  --paper: #ffffff;
  --ink: #15181d;
  --muted: #5d6672;
  --soft: #edf1ee;
  --line: #d9dfdc;
  --accent: #006b5a;
  --accent-dark: #004d41;
  --accent-soft: #dceee8;
  --future: #35f0d0;
  --violet: #5a4bff;
  --gold: #c08c2a;
  --shadow: 0 24px 70px rgba(23, 30, 28, 0.16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
  padding: 0 6vw;
  background: rgba(251, 251, 248, 0.9);
  border-bottom: 1px solid rgba(21, 24, 29, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #071416;
  box-shadow:
    0 0 0 1px rgba(53, 240, 208, 0.18),
    0 12px 26px rgba(0, 107, 90, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  color: #22272e;
  font-size: 0.9rem;
  font-weight: 650;
}

.desktop-nav a,
footer a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
footer a:hover {
  color: var(--accent);
}

.header-cta {
  min-width: 150px;
  padding: 13px 20px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
  text-align: center;
  box-shadow:
    0 12px 28px rgba(0, 107, 90, 0.22),
    0 0 0 1px rgba(53, 240, 208, 0.08) inset;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.header-cta:hover,
.button.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  min-height: calc(100vh - 72px);
  border-bottom: 1px solid rgba(21, 24, 29, 0.1);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-width: 0;
  padding: clamp(56px, 8vw, 112px) 6vw clamp(42px, 6vw, 76px);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 4.8vw, 4.75rem);
}

.hero-copy > p {
  max-width: 640px;
  margin-top: 28px;
  color: #2d3540;
  font-size: clamp(1.1rem, 1.8vw, 1.42rem);
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 100%;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 34px rgba(0, 107, 90, 0.22);
}

.button.secondary {
  border: 1px solid #15181d;
  background: rgba(255, 255, 255, 0.62);
  color: #15181d;
}

.button.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 190px));
  gap: 26px;
  margin-top: clamp(42px, 6vw, 72px);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-proof div {
  display: grid;
  gap: 10px;
}

.hero-proof svg {
  width: 34px;
  height: 34px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
  background: #eef1ed;
}

.workspace-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(251, 251, 248, 0.86), rgba(251, 251, 248, 0.16) 34%, rgba(251, 251, 248, 0.18)),
    linear-gradient(0deg, rgba(21, 24, 29, 0.08), rgba(21, 24, 29, 0.02));
}

.visual-panel {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(21, 24, 29, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.tasks-panel {
  top: 10%;
  left: 8%;
  width: min(292px, 34vw);
  padding: 22px;
}

.panel-title {
  display: block;
  margin-bottom: 15px;
  font-weight: 800;
}

.tasks-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  color: #333b45;
  font-size: 0.84rem;
  list-style: none;
}

.tasks-panel li {
  position: relative;
  padding-left: 25px;
}

.tasks-panel li::before {
  position: absolute;
  top: 0.08rem;
  left: 0;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border: 1px solid #9da7a4;
  border-radius: 50%;
  color: #fff;
  content: "";
  font-size: 0.58rem;
  line-height: 1;
}

.tasks-panel li.done::before {
  border-color: var(--accent);
  background: var(--accent);
  content: "";
}

.chat-panel {
  top: 8%;
  right: 12%;
  width: min(330px, 36vw);
  padding: 18px;
}

.chat-panel p {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 8px 8px 0 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.chat-panel span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.progress {
  height: 8px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4e9e6;
}

.progress i {
  display: block;
  width: 66%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.laptop-panel {
  right: 8%;
  bottom: 16%;
  width: min(460px, 54vw);
  padding: 22px;
}

.screen-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 800;
}

.screen-top strong {
  color: var(--accent);
}

.plan-grid {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 11px 16px;
  color: #39414b;
  font-size: 0.85rem;
}

.plan-grid span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(64px, 7vw, 112px) 6vw;
  border-bottom: 1px solid rgba(21, 24, 29, 0.1);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  margin-bottom: 40px;
}

h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.25rem);
}

.section-intro p,
.trust-copy p,
.contact-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid article {
  min-height: 230px;
  padding: 34px 26px;
  border-right: 1px solid var(--line);
}

.service-grid article:last-child {
  border-right: 0;
}

.service-grid svg,
.trust-list svg {
  width: 34px;
  height: 34px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h3 {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.3;
}

.service-grid p,
.process p,
.trust-list p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.split-section {
  background: linear-gradient(180deg, #fbfbf8 0%, #f3f6f2 100%);
}

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

.process article {
  position: relative;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.process article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -19px;
  z-index: 2;
  width: 20px;
  height: 1px;
  background: #aeb8b3;
  content: "";
}

.process span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #129a83, var(--accent));
  color: #fff;
  font-weight: 850;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
  background: #fff;
}

.trust-copy {
  position: sticky;
  top: 112px;
}

.trust-copy p {
  margin-top: 24px;
}

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

.trust-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.trust-list article:first-child {
  padding-top: 0;
}

.trust-list h3 {
  margin-top: 0;
  font-size: 1.12rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(360px, 0.86fr);
  gap: clamp(36px, 7vw, 92px);
  padding: clamp(64px, 8vw, 124px) 6vw;
  background: #eff5f1;
}

.contact-copy h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.contact-copy p {
  margin-top: 22px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(0, 107, 90, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(29, 42, 39, 0.1);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #29313b;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd7d3;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 144px;
  resize: vertical;
  padding: 14px;
  line-height: 1.5;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 107, 90, 0.12);
}

.contact-form button {
  width: 100%;
  cursor: pointer;
}

.contact-form button svg {
  order: 2;
}

.email-submit {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  text-align: center;
}

.form-status {
  display: none;
  margin-top: -4px;
  padding: 12px 14px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.45;
}

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

.form-status.is-error {
  background: #fff1f1;
  color: #8a1f1f;
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 6vw;
  background: #fff;
  color: var(--muted);
  font-size: 0.86rem;
}

footer div {
  display: flex;
  gap: 24px;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-visual {
    min-height: 580px;
  }

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

  .service-grid article:nth-child(3) {
    border-right: 0;
  }

  .service-grid article:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-block;
  }

  .site-header.menu-active .menu-button span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.menu-active .menu-button span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    z-index: 18;
    display: grid;
    gap: 4px;
    padding: 16px 6vw 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(251, 251, 248, 0.97);
    box-shadow: 0 18px 44px rgba(21, 24, 29, 0.1);
    transform: translateY(-130%);
    transition: transform 190ms ease;
  }

  .mobile-menu.is-open {
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 14px 0;
    font-weight: 800;
  }

  .hero-copy {
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(3.05rem, 13vw, 5rem);
  }

  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-intro,
  .trust-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-copy {
    position: static;
  }

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

  .process article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
  }

  .mobile-menu {
    top: 66px;
  }

  .brand {
    font-size: 1.22rem;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 44px 5vw 34px;
  }

  h1 {
    font-size: clamp(2.75rem, 11vw, 4rem);
  }

  .hero-copy > p {
    margin-top: 22px;
    font-size: 1.02rem;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    width: 100%;
  }

  .button {
    width: 100%;
    max-width: 100%;
    min-height: 54px;
    padding: 0 18px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  .hero-proof div {
    grid-template-columns: 34px 1fr;
    align-items: center;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-visual::before {
    background:
      linear-gradient(180deg, rgba(251, 251, 248, 0.2), rgba(251, 251, 248, 0.62)),
      linear-gradient(0deg, rgba(21, 24, 29, 0.08), rgba(21, 24, 29, 0.02));
  }

  .tasks-panel {
    top: 26px;
    left: 5vw;
    width: 56vw;
    padding: 16px;
  }

  .chat-panel {
    top: 190px;
    right: 5vw;
    width: 74vw;
    padding: 14px;
  }

  .laptop-panel {
    right: 5vw;
    bottom: 28px;
    left: 5vw;
    width: auto;
    padding: 18px;
  }

  .section {
    padding: 56px 5vw;
  }

  .section-intro {
    gap: 18px;
    margin-bottom: 28px;
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }

  .service-grid,
  .process,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-grid article:last-child {
    border-bottom: 0;
  }

  .service-grid article:nth-child(n + 4) {
    border-top: 0;
  }

  .contact-section {
    padding: 56px 5vw;
  }

  .contact-form .full {
    grid-column: auto;
  }


  footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 5vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
