:root {
  --black: #050505;
  --near-black: #111111;
  --grey-900: #1b1b1b;
  --grey-700: #4f4f4f;
  --grey-500: #7a7a7a;
  --grey-300: #d1d1d1;
  --grey-200: #e6e6e6;
  --grey-100: #f5f5f5;
  --white: #ffffff;
  --max-width: 1180px;
  --shadow: 0 22px 60px rgba(0,0,0,.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--black);
  color: var(--white);
  padding: 12px 16px;
  z-index: 9999;
}

.skip-link:focus {
  top: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  width: 142px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 54px;
  object-fit: contain;
}

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

.primary-nav > a:not(.nav-cta) {
  position: relative;
}

.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.primary-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  background: var(--black);
  color: var(--white);
  padding: 13px 18px;
  border: 1px solid var(--black);
  transition: .25s ease;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--black);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
  transition: .25s ease;
}

.hero {
  min-height: 730px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(0,0,0,.05), transparent 28%),
    linear-gradient(to bottom, #fff, #f8f8f8);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 76px;
  align-items: center;
  padding-block: 90px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--grey-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  font-family: "Space Grotesk", Arial, sans-serif;
  letter-spacing: -.055em;
  line-height: .98;
  margin: 0;
}

.hero h1 {
  font-size: clamp(56px, 7vw, 96px);
  max-width: 820px;
}

.hero h1 span {
  color: var(--grey-500);
}

.hero-text {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--grey-700);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

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

.button-primary {
  background: var(--black);
  color: var(--white);
}

.button-primary:hover {
  background: var(--grey-900);
}

.button-secondary {
  background: transparent;
  color: var(--black);
}

.button-secondary:hover {
  background: var(--black);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  white-space: nowrap;
}

.hero-note {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--grey-700);
  font-size: 14px;
}

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

.hero-visual {
  min-height: 510px;
  position: relative;
}

.logo-panel {
  position: absolute;
  inset: 40px 30px 40px 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-200);
}

.logo-panel img {
  width: 76%;
  object-fit: contain;
}

.capability-card {
  position: absolute;
  z-index: 2;
  width: 210px;
  padding: 20px;
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 35px rgba(0,0,0,.18);
}

.capability-card span {
  color: #8c8c8c;
  font-size: 12px;
  font-weight: 700;
}

.capability-card strong,
.capability-card small {
  display: block;
}

.capability-card strong {
  margin-top: 17px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 22px;
}

.capability-card small {
  margin-top: 4px;
  color: #bdbdbd;
}

.capability-card-one {
  top: 0;
  right: 0;
}

.capability-card-two {
  bottom: 0;
  right: 20px;
}

.capability-card-three {
  bottom: 50px;
  left: 0;
}

.capability-strip {
  background: var(--black);
  color: var(--white);
}

.strip-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 20px;
}

.strip-inner span {
  position: relative;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.strip-inner span:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #777;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.section h2 {
  font-size: clamp(42px, 5vw, 68px);
}

.section-heading > p {
  margin: 0;
  color: var(--grey-700);
  font-size: 17px;
}

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

.service-card {
  min-height: 390px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  transition: background .25s ease, color .25s ease;
}

.service-card:hover,
.service-card.featured {
  background: var(--black);
  color: var(--white);
}

.service-number {
  color: var(--grey-500);
  font-size: 12px;
  font-weight: 700;
}

.service-card h3 {
  margin: 58px 0 18px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.1;
}

.service-card p {
  margin: 0;
  color: var(--grey-700);
}

.service-card:hover p,
.service-card.featured p {
  color: #c4c4c4;
}

.service-card ul {
  margin: auto 0 0;
  padding: 26px 0 0;
  list-style: none;
  border-top: 1px solid currentColor;
  opacity: .86;
}

.service-card li {
  margin: 8px 0;
  font-size: 14px;
}

.service-card li::before {
  content: "↗";
  margin-right: 8px;
}

.service-card-wide {
  min-height: 260px;
  grid-column: span 3;
  display: grid;
  grid-template-columns: 70px 1.2fr .8fr;
  gap: 30px;
  align-items: start;
}

.service-card-wide h3 {
  margin: 0 0 18px;
}

.service-card-wide ul {
  margin: 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-heading.inverse > p,
.section-dark .eyebrow {
  color: #9a9a9a;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #3a3a3a;
}

.process-grid article {
  min-height: 330px;
  padding: 28px 24px;
  border-right: 1px solid #3a3a3a;
}

.process-grid article:first-child {
  border-left: 1px solid #3a3a3a;
}

.process-grid span {
  color: #777;
  font-size: 12px;
  font-weight: 700;
}

.process-grid h3 {
  margin: 90px 0 15px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 25px;
}

.process-grid p {
  margin: 0;
  color: #aaa;
  font-size: 14px;
}

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

.why-copy {
  position: sticky;
  top: 130px;
}

.why-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--grey-700);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  font-weight: 700;
  border-bottom: 1px solid var(--black);
}

.why-list {
  border-top: 1px solid var(--black);
}

.why-list article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--black);
}

.why-list article > span {
  color: var(--grey-500);
  font-size: 12px;
  font-weight: 700;
}

.why-list h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 26px;
}

.why-list p {
  margin: 0;
  color: var(--grey-700);
}

.audit-section {
  padding-top: 0;
}

.audit-card {
  background: var(--black);
  color: var(--white);
  padding: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.audit-card > div {
  max-width: 780px;
}

.audit-card .eyebrow {
  color: #999;
}

.audit-card h2 {
  max-width: 680px;
}

.audit-card p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #aaa;
  font-size: 17px;
}

.faq-section {
  background: var(--grey-100);
}

.faq-list {
  border-top: 1px solid var(--black);
}

.faq-list details {
  border-bottom: 1px solid var(--black);
}

.faq-list summary {
  padding: 28px 48px 28px 0;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 21px;
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 24px;
  font-size: 28px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 800px;
  margin: -5px 0 28px;
  color: var(--grey-700);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
}

.contact-copy > p:not(.eyebrow) {
  color: var(--grey-700);
  font-size: 18px;
}

.contact-details {
  margin-top: 44px;
  border-top: 1px solid var(--black);
}

.contact-details > * {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--black);
  font-weight: 600;
}

.contact-details span {
  display: block;
  color: var(--grey-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  font-weight: 700;
}

.social-links a {
  border-bottom: 1px solid var(--black);
}

.contact-form {
  padding: 38px;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
}

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

.contact-form label {
  display: block;
  margin-bottom: 19px;
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid #bcbcbc;
  border-radius: 0;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 2px rgba(0,0,0,.08);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 12px 0 0;
  text-align: center;
  color: var(--grey-500);
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--white);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 74px 0 26px;
}

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

.footer-brand img {
  width: 190px;
  background: var(--white);
}

.footer-brand p {
  color: #999;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: #777;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) span {
  display: block;
  margin: 9px 0;
  color: #d0d0d0;
  font-size: 14px;
}

.footer-bottom {
  margin-top: 58px;
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #333;
  color: #777;
  font-size: 13px;
}

.privacy-page main {
  min-height: 70vh;
}

.privacy-hero {
  padding: 100px 0 60px;
  background: var(--grey-100);
}

.privacy-content {
  padding: 70px 0 110px;
}

.privacy-content article {
  max-width: 820px;
}

.privacy-content h2 {
  margin-top: 45px;
  font-size: 30px;
  letter-spacing: -.03em;
}

.privacy-content p,
.privacy-content li {
  color: var(--grey-700);
}

@media (max-width: 1050px) {
  .hero-grid,
  .section-heading,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

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

  .section-heading {
    gap: 25px;
  }

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

  .service-card-wide {
    grid-column: span 2;
  }

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

  .process-grid article:nth-child(odd) {
    border-left: 1px solid #3a3a3a;
  }

  .why-copy {
    position: static;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 22px 20px 30px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--black);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--grey-200);
  }

  .primary-nav .nav-cta {
    margin-top: 14px;
    padding: 14px 18px;
    text-align: center;
  }

  .strip-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px 0;
  }

  .strip-inner span:last-child {
    grid-column: span 2;
  }

  .strip-inner span::after {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

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

  .service-card-wide {
    grid-column: span 1;
    grid-template-columns: 55px 1fr;
  }

  .service-card-wide ul {
    grid-column: 2;
  }

  .audit-card {
    padding: 45px 32px;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-brand {
    grid-column: span 2;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

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

  .nav-wrap {
    min-height: 72px;
  }

  .primary-nav {
    top: 72px;
  }

  .brand {
    width: 122px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 64px 0 70px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

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

  .logo-panel {
    inset: 38px 8px 52px 20px;
  }

  .capability-card {
    width: 170px;
    padding: 16px;
  }

  .capability-card strong {
    margin-top: 10px;
    font-size: 18px;
  }

  .capability-card small {
    font-size: 11px;
  }

  .capability-card-one {
    right: 0;
  }

  .capability-card-two {
    right: 0;
  }

  .capability-card-three {
    left: 0;
    bottom: 28px;
  }

  .section h2 {
    font-size: 40px;
  }

  .service-card {
    min-height: 350px;
    padding: 25px;
  }

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

  .process-grid article {
    min-height: 250px;
    border-left: 1px solid #3a3a3a;
  }

  .process-grid h3 {
    margin-top: 55px;
  }

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

  .contact-form {
    padding: 25px 18px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    right: 15px;
    bottom: 15px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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