:root {
  --background: #070908;
  --surface: #111512;
  --surface-light: #181d19;
  --surface-white: #f3f4ef;

  --text: #f5f7f2;
  --text-dark: #131613;
  --muted: #a1a99f;
  --muted-dark: #626961;

  --accent: #c4ff67;
  --danger: #ff8e8e;

  --line: rgba(255, 255, 255, 0.1);
  --line-light: rgba(19, 22, 19, 0.12);

  --container: 1200px;
  --radius: 36px;
  --shadow: 0 40px 100px rgba(0, 0, 0, 0.32);
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  color: inherit;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  color: var(--text-dark);
  background: var(--accent);
}

.skip-link {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--text-dark);
  background: var(--accent);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

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

.section {
  position: relative;
  padding: 120px 0;
}

.section-heading {
  margin-bottom: 55px;
}

.section-heading.centered {
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 55px;
  text-align: center;
}

.section-heading h2,
.google-content h2,
.short-about h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.section-heading > p,
.split-heading > p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading.centered > p {
  max-width: 670px;
  margin: 22px auto 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.kicker {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.large-copy {
  color: var(--muted);
  font-size: 20px;
}

.site-background {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  background: var(--background);
  pointer-events: none;
}

.background-grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 64px 64px;
  mask-image:
    linear-gradient(to bottom, #000, transparent 72%);
}

.background-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.glow-one {
  top: -250px;
  right: -150px;
  width: 680px;
  height: 680px;
  background: rgba(196, 255, 103, 0.13);
}

.glow-two {
  top: 45%;
  left: -350px;
  width: 650px;
  height: 650px;
  background: rgba(94, 107, 255, 0.08);
}

/* Navigation */

.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--container), calc(100% - 48px));
  padding: 10px 10px 10px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 9, 8, 0.82);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateX(-50%);
  transition:
    background-color var(--transition),
    box-shadow var(--transition);
}

.nav.is-scrolled {
  background: rgba(7, 9, 8, 0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.4);
}

.logo {
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links > a {
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition:
    color var(--transition),
    background-color var(--transition);
}

.nav-links > a:hover,
.nav-links > a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
  margin-left: 8px;
  padding: 12px 17px;
  border-radius: 11px;
  color: var(--text-dark);
  background: var(--accent);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta:hover {
  background: #d2ff8d;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 5px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switch span,
.language-switch a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 30px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
}

.language-switch span {
  color: var(--text-dark);
  background: var(--accent);
}

.language-switch a {
  color: var(--muted);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--text);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 10px;
  background: var(--text-dark);
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

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

.button-primary {
  color: var(--text-dark);
  background: var(--accent);
}

.button-primary:hover {
  background: #d2ff8d;
  box-shadow: 0 18px 50px rgba(196, 255, 103, 0.16);
}

.button-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
}

.button-dark {
  color: var(--text);
  background: var(--text-dark);
}

.button-dark:hover {
  background: #242a24;
}

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

.text-link span {
  color: var(--accent);
}

/* Hero */

.hero {
  padding: 170px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.82fr);
  align-items: center;
  gap: 72px;
  min-height: 700px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 9px 12px;
  border: 1px solid rgba(196, 255, 103, 0.24);
  border-radius: 10px;
  color: var(--accent);
  background: rgba(196, 255, 103, 0.07);
  font-size: 12px;
  font-weight: 800;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(58px, 7.5vw, 108px);
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.serif {
  display: block;
  color: var(--accent);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

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

.hero-proof strong {
  font-size: 13px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 11px;
}

.hero-showcase {
  position: relative;
  min-width: 0;
}

.showcase-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: var(--surface-white);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.browser-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid #dde0d9;
  background: #fff;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d1d4ce;
}

.browser-dots span:first-child {
  background: #ff847c;
}

.browser-dots span:nth-child(2) {
  background: #f0ca58;
}

.browser-dots span:last-child {
  background: #76cf84;
}

.browser-address {
  justify-self: center;
  width: min(260px, 72%);
  padding: 6px 11px;
  border: 1px solid #e0e3dc;
  border-radius: 8px;
  color: #8b9188;
  background: #f5f6f2;
  font-size: 10px;
  text-align: center;
}

.demo-page {
  min-height: 555px;
  padding: 28px;
  color: var(--text-dark);
  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(196, 255, 103, 0.45),
      transparent 30%
    ),
    #f2f3ed;
}

.demo-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
}

.demo-nav strong {
  margin-right: auto;
  font-size: 15px;
}

.demo-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 340px;
  padding-top: 65px;
}

.demo-label {
  margin-bottom: 16px;
  padding: 7px 9px;
  border: 1px solid var(--line-light);
  border-radius: 7px;
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.demo-hero h2 {
  max-width: 430px;
  margin-bottom: 18px;
  font-size: clamp(38px, 4.5vw, 57px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.demo-hero h2 em {
  display: block;
  color: #537a31;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.demo-hero p {
  max-width: 360px;
  color: var(--muted-dark);
  font-size: 12px;
}

.demo-button {
  margin-top: 17px;
  padding: 10px 13px;
  border-radius: 8px;
  color: #fff;
  background: var(--text-dark);
  font-size: 10px;
  font-weight: 800;
}

.demo-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.demo-results div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.demo-results strong,
.demo-results span {
  display: block;
}

.demo-results strong {
  margin-bottom: 4px;
  font-size: 11px;
}

.demo-results span {
  color: var(--muted-dark);
  font-size: 9px;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(17, 21, 18, 0.94);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.36);
}

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

.floating-card strong {
  font-size: 12px;
}

.floating-card small {
  color: var(--muted);
  font-size: 10px;
}

.floating-card-one {
  bottom: 55px;
  left: -40px;
}

.floating-card-two {
  top: 85px;
  right: -35px;
  display: grid;
}

.status-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(196, 255, 103, 0.1);
}

.trust-bar {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 65px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.trust-bar p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.trust-items span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

/* Value cards */

.value-section {
  background: rgba(255, 255, 255, 0.018);
}

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

.value-card,
.capability-card {
  position: relative;
  min-height: 360px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 100% 100%,
      rgba(196, 255, 103, 0.09),
      transparent 38%
    ),
    var(--surface);
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.value-card:hover,
.capability-card:hover {
  border-color: rgba(196, 255, 103, 0.28);
  transform: translateY(-6px);
}

.card-number,
.capability-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(255, 255, 255, 0.26);
  font-size: 11px;
  font-weight: 800;
}

.card-icon,
.capability-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 70px;
  border-radius: 17px;
  color: var(--text-dark);
  background: var(--accent);
  font-size: 22px;
  font-weight: 800;
}

.value-card h3,
.capability-card h3 {
  margin-bottom: 13px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.value-card p,
.capability-card p {
  color: var(--muted);
  font-size: 14px;
}

.card-outcome,
.capability-card > strong {
  display: block;
  margin-top: 24px;
  color: var(--accent);
  font-size: 12px;
}

/* Capability */

.capability-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 20px;
  margin-bottom: 20px;
}

.capability-preview,
.capability-feature-content {
  min-height: 630px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.capability-preview {
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 50px;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(196, 255, 103, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 95% 90%,
      rgba(116, 138, 255, 0.16),
      transparent 32%
    ),
    #1b211d;
}

.strategy-window {
  width: 100%;
  max-width: 680px;
  overflow: hidden;
  border-radius: 25px;
  color: var(--text-dark);
  background: #f2f4ee;
  box-shadow: 0 38px 95px rgba(0, 0, 0, 0.38);
  transform: rotate(-1deg);
}

.strategy-window-top {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 52px;
  padding: 0 17px;
  border-bottom: 1px solid #dde2d9;
  background: #fff;
}

.strategy-window-top > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d2d6cf;
}

.strategy-window-top > span:first-child {
  background: #ff847c;
}

.strategy-window-top > span:nth-child(2) {
  background: #efc75d;
}

.strategy-window-top > span:nth-child(3) {
  background: #77ca83;
}

.strategy-address {
  margin-inline: auto;
  padding: 6px 11px;
  border: 1px solid #e0e4dc;
  border-radius: 8px;
  color: #8b9288;
  background: #f5f6f2;
  font-size: 9px;
}

.strategy-content {
  padding: 34px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(196, 255, 103, 0.45),
      transparent 28%
    ),
    #f2f4ee;
}

.strategy-label {
  display: inline-block;
  margin-bottom: 17px;
  padding: 7px 9px;
  border: 1px solid var(--line-light);
  border-radius: 7px;
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.strategy-content h3 {
  margin-bottom: 34px;
  font-size: clamp(39px, 5vw, 61px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.strategy-content h3 em {
  display: block;
  color: #4f7330;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.strategy-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.strategy-flow div {
  min-height: 160px;
  padding: 17px;
  border: 1px solid var(--line-light);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.8);
}

.strategy-flow span,
.strategy-flow strong,
.strategy-flow small {
  display: block;
}

.strategy-flow span {
  margin-bottom: 35px;
  color: #7c8479;
  font-size: 9px;
  font-weight: 800;
}

.strategy-flow strong {
  margin-bottom: 7px;
  font-size: 14px;
}

.strategy-flow small {
  color: var(--muted-dark);
  font-size: 9px;
  line-height: 1.5;
}

.strategy-result {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
  padding: 16px;
  border-radius: 13px;
  color: #fff;
  background: var(--text-dark);
}

.strategy-result div {
  display: grid;
  gap: 2px;
}

.strategy-result small {
  color: #adb5aa;
  font-size: 9px;
}

.strategy-result strong {
  font-size: 12px;
}

.capability-feature-content {
  display: flex;
  flex-direction: column;
  padding: 42px;
  background:
    radial-gradient(
      circle at 100% 100%,
      rgba(196, 255, 103, 0.08),
      transparent 38%
    ),
    var(--surface);
}

.capability-label {
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.capability-feature-content > h3 {
  margin-bottom: 20px;
  font-size: clamp(37px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.capability-feature-content > p {
  color: var(--muted);
  font-size: 15px;
}

.capability-points {
  display: grid;
  gap: 16px;
  margin: 30px 0;
}

.capability-points div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.capability-points strong,
.capability-points span {
  display: block;
}

.capability-points strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.capability-points span {
  color: var(--muted);
  font-size: 12px;
}

.capability-feature-content .button {
  align-self: flex-start;
  margin-top: auto;
}

/* Services */

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-card-featured {
  grid-row: span 2;
  min-height: 638px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(196, 255, 103, 0.15),
      transparent 35%
    ),
    var(--surface);
}

.service-top {
  display: flex;
  justify-content: space-between;
  min-height: 65px;
  color: var(--muted);
  font-size: 11px;
}

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

.service-card h3 {
  margin-bottom: 16px;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.05em;
}

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

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 32px 0;
  color: var(--muted);
}

.service-card li {
  position: relative;
  padding-left: 23px;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.service-card .button,
.service-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

/* Process */

.process-section {
  color: var(--text-dark);
  background: var(--surface-white);
}

.process-section .kicker {
  color: #4f7330;
}

.process-section .split-heading > p {
  color: var(--muted-dark);
}

.compact-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.compact-process article {
  min-height: 260px;
  padding: 27px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.compact-process span {
  display: block;
  margin-bottom: 62px;
  color: #65705f;
  font-size: 12px;
  font-weight: 800;
}

.compact-process h3 {
  margin-bottom: 11px;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.compact-process p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
}

/* Google */

.google-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(410px, 0.75fr);
  align-items: center;
  gap: 82px;
}

.google-content .large-copy {
  max-width: 680px;
  margin: 26px 0 32px;
}

.google-benefits {
  display: grid;
  margin-bottom: 34px;
}

.google-benefits div {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.google-benefits strong {
  font-size: 15px;
}

.google-benefits span {
  color: var(--muted);
  font-size: 14px;
}

.google-preview {
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--text-dark);
  background: #f7f8f4;
  box-shadow: var(--shadow);
}

.google-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 23px;
}

.google-wordmark {
  font-size: 18px;
  font-weight: 700;
}

.google-wordmark i {
  color: #4285f4;
  font-style: normal;
}

.verified-label {
  padding: 7px 9px;
  border-radius: 7px;
  color: #26723c;
  background: #e4f6e8;
  font-size: 9px;
  font-weight: 800;
}

.map-preview {
  position: relative;
  height: 245px;
  overflow: hidden;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.045) 1px,
      transparent 1px
    ),
    #dfe7dc;
  background-size: 42px 42px;
}

.map-road {
  position: absolute;
  height: 18px;
  border: 5px solid #fff;
  border-radius: 999px;
  background: #cbd1c7;
}

.road-one {
  top: 58px;
  left: -60px;
  width: 400px;
  transform: rotate(24deg);
}

.road-two {
  right: -80px;
  bottom: 65px;
  width: 430px;
  transform: rotate(-18deg);
}

.road-three {
  top: 35px;
  right: 90px;
  width: 260px;
  transform: rotate(78deg);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 43px;
  height: 43px;
  border-radius: 50% 50% 50% 0;
  background: #ea4335;
  box-shadow: 0 15px 35px rgba(234, 67, 53, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #fff;
}

.business-profile {
  padding: 26px;
}

.profile-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.profile-heading h3 {
  margin-bottom: 4px;
  font-size: 30px;
  letter-spacing: -0.045em;
}

.rating {
  color: #e6aa00;
  font-size: 11px;
  font-weight: 800;
}

.open-label {
  padding: 7px 9px;
  border-radius: 7px;
  color: #23743a;
  background: #e5f7e8;
  font-size: 9px;
  font-weight: 800;
}

.business-profile > p {
  margin: 11px 0 20px;
  color: var(--muted-dark);
  font-size: 12px;
}

.profile-actions,
.profile-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.profile-actions span {
  padding: 11px 7px;
  border-radius: 9px;
  color: #1a73e8;
  background: #edf3fb;
  font-size: 9px;
  font-weight: 800;
  text-align: center;
}

.profile-results {
  margin-top: 18px;
}

.profile-results div {
  padding: 13px;
  border-radius: 11px;
  background: #ecefe8;
}

.profile-results strong,
.profile-results span {
  display: block;
}

.profile-results strong {
  font-size: 13px;
}

.profile-results span {
  color: var(--muted-dark);
  font-size: 9px;
}

/* About and CTA */

.short-about {
  padding: 105px 0;
  border-top: 1px solid var(--line);
}

.short-about-grid {
  display: grid;
  grid-template-columns: 170px minmax(0, 760px);
  gap: 65px;
}

.short-about h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 64px);
}

.short-about-grid > div > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 17px;
}

.final-cta {
  padding: 65px 0;
}

.final-cta-inner {
  padding: 75px;
  border-radius: 44px;
  color: var(--text-dark);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 255, 255, 0.5),
      transparent 30%
    ),
    var(--accent);
}

.final-cta .kicker {
  color: #456424;
}

.final-cta h2 {
  max-width: 950px;
}

.final-cta-inner > p:not(.kicker) {
  max-width: 660px;
  margin: 24px 0 32px;
  color: #415237;
  font-size: 17px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.final-email {
  color: #35482b;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Footer */

.footer {
  padding: 65px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) 1fr;
  gap: 90px;
  padding-bottom: 55px;
}

.footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.footer-links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 7px;
  font-size: 12px;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border-radius: 14px;
  color: var(--text-dark);
  background: var(--accent);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.floating-whatsapp span {
  color: #2b7c35;
}

/* Modal */

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.contact-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 3, 0.84);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.contact-dialog {
  position: relative;
  z-index: 1;
  width: min(750px, 100%);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(196, 255, 103, 0.11),
      transparent 35%
    ),
    var(--surface);
  box-shadow: var(--shadow);
}

.contact-dialog > h2 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(38px, 6vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.contact-dialog > p:not(.kicker) {
  margin-bottom: 30px;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 26px;
  cursor: pointer;
}

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

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

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

.form-field > span {
  font-size: 12px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.form-field input,
.form-field select {
  min-height: 51px;
  padding: 0 14px;
}

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

.form-field select option {
  color: var(--text-dark);
}

.field-error {
  display: none;
  color: var(--danger);
  font-size: 11px;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--danger);
}

.form-field.has-error .field-error {
  display: block;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.form-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

/* Animation */

.js .reveal,
.js .reveal-left,
.js .reveal-right {
  opacity: 0;
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.js .reveal {
  transform: translateY(25px);
}

.js .reveal-left {
  transform: translateX(-30px);
}

.js .reveal-right {
  transform: translateX(30px);
}

.js .reveal.is-visible,
.js .reveal-left.is-visible,
.js .reveal-right.is-visible {
  opacity: 1;
  transform: translate(0);
}

/* Tablet */

@media (max-width: 1080px) {
  .nav-links > a {
    padding-inline: 9px;
  }

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

  .hero-content {
    max-width: 850px;
  }

  .hero-showcase {
    max-width: 750px;
  }

  .split-heading,
  .capability-feature,
  .google-layout {
    grid-template-columns: 1fr;
  }

  .capability-preview {
    min-height: 600px;
  }

  .google-preview {
    max-width: 750px;
  }
}

@media (max-width: 900px) {
  .nav-links > a,
  .language-switch,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    right: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(13, 16, 14, 0.98);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
  }

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

  .nav-links.is-open > a,
  .nav-links.is-open .language-switch,
  .nav-links.is-open .nav-cta {
    display: flex;
  }

  .nav-links.is-open > a {
    padding: 14px;
  }

  .nav-links.is-open .language-switch {
    align-self: flex-start;
    margin: 8px 0;
  }

  .nav-links.is-open .nav-cta {
    width: 100%;
    margin: 4px 0 0;
    justify-content: center;
  }

  .value-cards,
  .capability-grid {
    grid-template-columns: 1fr;
  }

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

/* Mobile */

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 92px 0;
  }

  .nav {
    top: 12px;
    width: calc(100% - 24px);
    padding: 8px 8px 8px 16px;
  }

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

  .hero h1 {
    font-size: clamp(50px, 15vw, 74px);
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .showcase-window {
    transform: none;
  }

  .demo-page {
    min-height: 500px;
    padding: 20px;
  }

  .demo-nav span {
    display: none;
  }

  .demo-hero {
    min-height: 305px;
  }

  .demo-hero h2 {
    font-size: 40px;
  }

  .demo-results {
    grid-template-columns: 1fr;
  }

  .floating-card {
    display: none;
  }

  .trust-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .section-heading h2,
  .google-content h2,
  .short-about h2,
  .final-cta h2 {
    font-size: clamp(41px, 12vw, 60px);
  }

  .value-card,
  .capability-card {
    min-height: 330px;
    padding: 27px;
  }

  .capability-preview {
    min-height: auto;
    padding: 20px;
  }

  .strategy-window {
    transform: none;
  }

  .strategy-content {
    padding: 22px;
  }

  .strategy-content h3 {
    font-size: 39px;
  }

  .strategy-flow {
    grid-template-columns: 1fr;
  }

  .strategy-flow div {
    min-height: 125px;
  }

  .strategy-flow span {
    margin-bottom: 22px;
  }

  .capability-feature-content {
    min-height: auto;
    padding: 28px;
  }

  .capability-feature-content .button {
    width: 100%;
    margin-top: 18px;
  }

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

  .service-card,
  .service-card-featured {
    min-height: 400px;
    grid-row: auto;
    padding: 28px;
  }

  .profile-actions,
  .profile-results {
    grid-template-columns: 1fr;
  }

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

  .final-cta-inner {
    padding: 46px 24px;
    border-radius: 28px;
  }

  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-actions .button {
    width: 100%;
  }

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

  .footer-grid {
    gap: 45px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-modal {
    padding: 12px;
  }

  .contact-dialog {
    max-height: calc(100vh - 24px);
    padding: 36px 21px 24px;
    border-radius: 22px;
  }

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

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

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .compact-process {
    grid-template-columns: 1fr;
  }

  .compact-process article {
    min-height: 215px;
  }

  .compact-process span {
    margin-bottom: 40px;
  }

  .strategy-address {
    display: none;
  }

  .floating-whatsapp {
    right: 13px;
    bottom: 13px;
  }
}

@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;
  }

  .js .reveal,
  .js .reveal-left,
  .js .reveal-right {
    opacity: 1;
    transform: none;
  }
}
