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

:root {
  --bg: #ffffff;
  --surface: #f5f5f3;
  --text: #111111;
  --muted: #696969;
  --line: #deded9;
  --dark: #0d0d0d;
  --accent: #00a987;
  --accent-2: #30337f;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17,17,17,.08);
}

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

.brand {
  width: 142px;
  height: 46px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.brand img,
.footer-brand img {
  width: 100%;
  transform: scale(0.8);
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: opacity .25s ease;
}

.nav-links a:hover {
  opacity: .55;
}

.nav-cta {
  background: var(--dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 38px;
  height: 38px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: #111;
  margin: 6px auto;
}

.hero {
  padding-top: 170px;
  min-height: 820px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(0,169,135,.11), transparent 28%),
    linear-gradient(#fff, #fbfbfa);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  margin-bottom: 24px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.split-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(54px, 6vw, 88px);
  max-width: 760px;
}

.hero h1 span {
  color: var(--accent-2);
}

.hero-copy > p {
  color: var(--muted);
  font-size: 18px;
  max-width: 650px;
  margin: 30px 0 34px;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--dark);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

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

.btn-dark {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

.btn-light {
  background: transparent;
}

.hero-meta {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 38px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-meta span::before {
  content: "•";
  margin-right: 9px;
  color: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
}

.visual-card {
  width: min(430px, 100%);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 30px 80px rgba(20,20,20,.13);
  padding: 28px;
  position: relative;
  z-index: 2;
}

.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(0,169,135,.1);
}

.card-tag {
  margin-left: auto;
  background: #efefed;
  padding: 6px 10px;
  border-radius: 999px;
}

.metric-row {
  margin: 34px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-row div {
  padding: 18px;
  background: var(--surface);
  border-radius: 18px;
}

.metric-row small,
.card-bottom span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 5px;
}

.metric-row strong {
  font-size: 18px;
}

.chart {
  height: 170px;
  border-radius: 20px;
  padding: 20px;
  background: var(--dark);
  display: flex;
  align-items: end;
  gap: 12px;
}

.chart span {
  flex: 1;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(180deg, #fff, #8c8c8c);
}

.card-bottom {
  margin-top: 24px;
}

.floating-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 16px 45px rgba(0,0,0,.1);
  z-index: 3;
}

.chip-one { top: 54px; right: 2px; }
.chip-two { bottom: 42px; left: -12px; }
.chip-three { top: 132px; left: -18px; }

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid span {
  text-align: center;
  padding: 24px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
  border-right: 1px solid var(--line);
}

.trust-grid span:last-child {
  border-right: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading h2,
.split-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(42px, 5vw, 68px);
}

.section-heading p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  max-width: 650px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 360px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, transform .25s ease;
}

.service-card:hover {
  background: var(--surface);
  transform: translateY(-4px);
}

.service-no {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

.service-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  margin: 64px 0 14px;
}

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

.service-card ul {
  margin-top: 24px;
  list-style: none;
}

.service-card li {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

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

.split-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.split-heading p {
  color: #b7b7b7;
  max-width: 540px;
  font-size: 17px;
}

.eyebrow.light {
  color: #c9c9c9;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid #303030;
  border-left: 1px solid #303030;
}

.process-item {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid #303030;
  border-bottom: 1px solid #303030;
}

.process-item span {
  color: #8d8d8d;
  font-size: 12px;
  font-weight: 800;
}

.process-item h3 {
  font-size: 24px;
  margin: 92px 0 12px;
}

.process-item p {
  color: #a9a9a9;
  font-size: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
  align-items: start;
}

.about-text p {
  font-size: 21px;
  color: #474747;
}

.about-text p + p {
  margin-top: 30px;
}

.contact-section {
  background: var(--surface);
}

.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.contact-copy > p {
  color: var(--muted);
  font-size: 17px;
  margin: 24px 0 40px;
  max-width: 480px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 700;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 20px 60px rgba(0,0,0,.07);
}

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

label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 17px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fafafa;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border .2s ease, background .2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #111;
  background: #fff;
}

textarea {
  resize: vertical;
}

.full {
  width: 100%;
  border: 0;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  margin-top: 14px;
}

footer {
  padding: 50px 0;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  width: 130px;
  height: 46px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.footer-brand p {
  width: 250px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
}

.copyright {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0,169,135,.06), transparent 68%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-heading,
  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero {
    min-height: auto;
  }

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

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

  .about-grid,
  .contact-wrap {
    gap: 50px;
  }
}

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

  .container {
    width: min(100% - 28px, 1180px);
  }

  .menu-toggle {
    display: block;
    z-index: 10;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 11px 8px;
  }

  .nav-cta {
    text-align: center;
    padding: 12px 20px !important;
  }

  .hero {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 64px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

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

  .floating-chip {
    font-size: 10px;
    padding: 10px 12px;
  }

  .chip-one { right: -4px; }
  .chip-two { left: 0; }
  .chip-three { left: -2px; }

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

  .trust-grid span:nth-child(2) {
    border-right: 0;
  }

  .trust-grid span:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .service-card {
    min-height: 320px;
  }

  .service-card h3 {
    margin-top: 50px;
  }

  .process-item {
    min-height: 230px;
  }

  .process-item h3 {
    margin-top: 64px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 22px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}
