:root {
  --bg: #080b0f;
  --bg-soft: #0e131a;
  --surface: #111821;
  --surface-2: #161e29;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f7f5;
  --muted: #9aa5ae;
  --green: #9cff45;
  --green-dark: #62bc13;
  --green-soft: rgba(156, 255, 69, 0.13);
  --white-soft: #e4ebea;
  --radius: 22px;
  --radius-large: 32px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --container: min(1200px, calc(100% - 48px));
  --font: "Manrope", Arial, sans-serif;
  --display: "Space Grotesk", "Manrope", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 4%, rgba(156, 255, 69, 0.08), transparent 34%),
    var(--bg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  color: var(--muted);
  line-height: 1.72;
}

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

svg {
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 18px;
  z-index: 110;
  padding: 12px 18px;
  color: var(--bg);
  border-radius: 10px;
  background: var(--green);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 24px 0;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  padding: 14px 0;
  background: rgba(8, 11, 15, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  position: relative;
  display: inline-flex;
  width: 290px;
  height: 72px;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-logo {
  position: absolute;
  top: -64px;
  left: -33px;
  display: block;
  width: 337px;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  color: var(--white-soft);
  font-size: 14px;
  font-weight: 600;
}

.nav-links > a:not(.button) {
  transition: color 160ms ease;
}

.nav-links > a:not(.button):hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 28px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: #071005;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: #b2ff70;
  box-shadow: 0 16px 34px rgba(156, 255, 69, 0.19);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding: 0 23px;
}

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

.button-ghost {
  color: var(--text);
  border-color: var(--line);
  background: transparent;
}

.button-ghost:hover {
  color: var(--green);
  border-color: rgba(156, 255, 69, 0.42);
  background: var(--green-soft);
  box-shadow: none;
}

.menu-toggle {
  display: none;
}

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

.hero-glow {
  position: absolute;
  right: -200px;
  top: 136px;
  width: 720px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156, 255, 69, 0.13), transparent 64%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--green);
}

.hero h1 {
  max-width: 520px;
  font: 700 clamp(48px, 5.3vw, 76px) / 1.03 var(--display);
  letter-spacing: -0.075em;
}

.hero h1 .accent {
  position: relative;
  color: var(--green);
}

.hero h1 .accent::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 10px;
  background: rgba(156, 255, 69, 0.2);
}

.hero-text {
  max-width: 492px;
  padding: 27px 0 38px;
  font-size: 17px;
}

.hero-text strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 55px;
}

.trust-row {
  display: flex;
  gap: 26px;
}

.trust-row div {
  min-width: 106px;
}

.trust-row div + div {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.trust-row strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 15px;
}

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

.hero-visual {
  position: relative;
  padding: 26px 0 54px;
}

.dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-large);
  background: #0b1016;
  box-shadow: var(--shadow);
}

.dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.browser-bar {
  display: flex;
  height: 55px;
  gap: 20px;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}

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

.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39414c;
}

.dots i:first-child {
  background: var(--green);
}

.address {
  width: min(244px, 55%);
  padding: 8px 20px;
  color: #6f7882;
  border-radius: 40px;
  background: #121923;
  font-size: 11px;
}

.dashboard-body {
  padding: clamp(22px, 4vw, 36px);
}

.preview-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 42px;
}

.preview-logo {
  width: 40px;
  height: 10px;
  margin-right: auto;
  border-radius: 10px;
  background: var(--green);
}

.preview-nav {
  width: 42px;
  height: 7px;
  border-radius: 20px;
  background: #2a333e;
}

.preview-nav.small {
  width: 32px;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: end;
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--green);
  border-radius: 20px;
  background: var(--green-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.line {
  border-radius: 30px;
  background: #edf5f2;
}

.line.title {
  width: 100%;
  height: 17px;
  margin-bottom: 9px;
}

.line.title.short {
  width: 70%;
  margin-bottom: 22px;
}

.line.text {
  width: 91%;
  height: 6px;
  margin-bottom: 9px;
  background: #35404a;
}

.line.text.medium {
  width: 62%;
}

.preview-buttons {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.mini-button {
  width: 78px;
  height: 24px;
  border-radius: 20px;
  background: var(--green);
}

.mini-button.outline {
  width: 59px;
  border: 1px solid #34404a;
  background: transparent;
}

.conversion-card {
  padding: 20px 17px 15px;
  border: 1px solid rgba(156, 255, 69, 0.15);
  border-radius: 18px;
  background: #101820;
}

.conversion-card span {
  display: block;
  margin-bottom: 8px;
  color: #78838d;
  font-size: 10px;
}

.conversion-card strong {
  color: var(--green);
  font-size: 18px;
}

.chart {
  display: flex;
  height: 76px;
  gap: 8px;
  align-items: flex-end;
  margin-top: 15px;
}

.chart i {
  display: block;
  width: 19%;
  height: 30%;
  border-radius: 5px 5px 2px 2px;
  background: rgba(156, 255, 69, 0.23);
}

.chart i:nth-child(2) {
  height: 54%;
}

.chart i:nth-child(3) {
  height: 46%;
}

.chart i:nth-child(4) {
  height: 74%;
}

.chart i:nth-child(5) {
  height: 100%;
  background: var(--green);
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 36px;
}

.preview-cards div {
  height: 53px;
  border-radius: 12px;
  background: #131b23;
}

.floating-note {
  position: absolute;
  right: -18px;
  bottom: 20px;
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 15px 18px 15px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #121a20;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.floating-note .check {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #081004;
  border-radius: 50%;
  background: var(--green);
  font-weight: 800;
}

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

.floating-note strong {
  margin-bottom: 3px;
  font-size: 12px;
}

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

.marquee-section {
  overflow: hidden;
  padding: 23px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0e13;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 36px;
  align-items: center;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  color: #dce4e0;
  font: 500 14px var(--display);
  letter-spacing: 0.13em;
}

.marquee-track i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(78px, 9vw, 112px) 0;
}

.section[id],
.contact[id] {
  scroll-margin-top: 86px;
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(40px, 8vw, 114px);
}

.section-intro h2,
.section-heading h2 {
  font: 700 clamp(34px, 4vw, 48px) / 1.13 var(--display);
  letter-spacing: -0.06em;
}

.about-text > p {
  max-width: 670px;
  margin-bottom: 43px;
  color: var(--white-soft);
  font-size: 20px;
}

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

.pillars span {
  display: block;
  margin-bottom: 21px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.pillars h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.pillars p {
  font-size: 14px;
}

.services {
  background: var(--bg-soft);
}

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

.section-heading h2 {
  max-width: 650px;
}

.text-link {
  display: inline-flex;
  flex-shrink: 0;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  font-size: 21px;
  transition: transform 170ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

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

.service-card {
  position: relative;
  min-height: 360px;
  padding: 38px 33px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 190ms ease, border-color 190ms ease;
}

.service-card:hover {
  border-color: rgba(156, 255, 69, 0.35);
  transform: translateY(-5px);
}

.service-card.featured {
  border-color: rgba(156, 255, 69, 0.36);
  background:
    linear-gradient(155deg, rgba(156, 255, 69, 0.07), transparent 48%),
    var(--surface);
}

.card-label {
  position: absolute;
  top: 25px;
  right: 24px;
  padding: 7px 12px;
  color: var(--green);
  border-radius: 30px;
  background: var(--green-soft);
  font-size: 11px;
  font-weight: 700;
}

.service-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--green);
  border-radius: 14px;
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 14px;
  font: 700 24px var(--display);
  letter-spacing: -0.04em;
}

.service-card p {
  min-height: 54px;
  margin-bottom: 24px;
  font-size: 14px;
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #c7d0cc;
  font-size: 13px;
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.service-card li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
}

.section-heading.centered {
  display: block;
  margin-bottom: 58px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

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

.step {
  padding: 30px 27px 34px;
  border-top: 1px solid #28323a;
}

.step span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 36px;
  place-items: center;
  color: var(--green);
  border-radius: 50%;
  background: var(--green-soft);
  font-size: 14px;
  font-weight: 800;
}

.step h3 {
  margin-bottom: 13px;
  font-size: 20px;
}

.step p {
  font-size: 14px;
}

.portfolio {
  background: var(--bg-soft);
}

.muted {
  max-width: 280px;
  margin-bottom: 9px;
  font-size: 14px;
}

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

.project-window {
  overflow: hidden;
  padding: 13px 13px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111820;
}

.project-ui {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
}

.project-ui span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #46505c;
}

.project-screen {
  position: relative;
  display: flex;
  height: 268px;
  flex-direction: column;
  justify-content: end;
  padding: 25px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.project-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.68));
}

.project-screen div,
.project-screen strong,
.project-screen small {
  position: relative;
}

.project-screen div {
  width: 36px;
  height: 5px;
  margin-bottom: 13px;
  border-radius: 12px;
  background: var(--green);
}

.project-screen strong {
  margin-bottom: 7px;
  font: 700 29px var(--display);
  letter-spacing: -0.05em;
}

.project-screen small {
  color: #e1e7e3;
}

.project-one .project-screen {
  background:
    linear-gradient(130deg, #17211f, #594f3b),
    #232b28;
}

.project-one .project-screen::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 29px;
  width: 90px;
  height: 155px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.project-two .project-screen {
  background:
    radial-gradient(circle at 60% 24%, #416a53, transparent 32%),
    linear-gradient(125deg, #0d1715, #16251f);
}

.project-two .project-screen::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: 52px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  border: 24px solid rgba(156, 255, 69, 0.25);
}

.project-three .project-screen {
  background:
    radial-gradient(circle at 62% 28%, #604643, transparent 28%),
    linear-gradient(120deg, #1d1718, #322325);
}

.project-three .project-screen::after {
  content: "";
  position: absolute;
  top: 38px;
  right: 42px;
  width: 88px;
  height: 104px;
  border-radius: 46px 46px 13px 13px;
  background: linear-gradient(130deg, #c78870, #51302e);
}

.project-caption {
  display: flex;
  justify-content: space-between;
  padding: 22px 5px 0;
}

.project-caption h3 {
  font-size: 17px;
}

.project-caption span {
  color: var(--muted);
  font-size: 13px;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(34px, 6vw, 88px);
}

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

.benefit {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.benefit span {
  display: block;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 24px;
}

.benefit h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.benefit p {
  font-size: 14px;
}

.faq {
  padding-top: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(40px, 7vw, 105px);
}

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

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  color: var(--text);
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 22px;
  color: var(--green);
  font-size: 25px;
  font-weight: 400;
}

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

.faq-list details p {
  max-width: 650px;
  padding: 0 42px 26px 0;
  font-size: 14px;
}

.contact {
  padding: 20px 0 94px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 7vw, 82px);
  padding: clamp(35px, 6vw, 68px);
  border: 1px solid rgba(156, 255, 69, 0.21);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 5% 96%, rgba(156, 255, 69, 0.14), transparent 35%),
    var(--surface);
}

.contact-copy h2 {
  margin-bottom: 22px;
  font: 700 clamp(35px, 4vw, 47px) / 1.12 var(--display);
  letter-spacing: -0.06em;
}

.contact-copy > p:not(.eyebrow) {
  margin-bottom: 35px;
  font-size: 16px;
}

.contact-highlight {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--white-soft);
  font-size: 13px;
  font-weight: 600;
}

.pulse {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.pulse::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(156, 255, 69, 0.45);
  border-radius: 50%;
}

.briefing-form {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.briefing-form label {
  display: grid;
  gap: 9px;
  color: #dbe4df;
  font-size: 13px;
  font-weight: 700;
}

.briefing-form input,
.briefing-form select,
.briefing-form textarea {
  width: 100%;
  padding: 16px 17px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0e141b;
  transition: border-color 160ms ease;
}

.briefing-form input::placeholder,
.briefing-form textarea::placeholder {
  color: #68747f;
}

.briefing-form input:focus,
.briefing-form select:focus,
.briefing-form textarea:focus {
  border-color: rgba(156, 255, 69, 0.62);
  outline: none;
}

.briefing-form textarea {
  resize: vertical;
}

.form-button {
  width: fit-content;
  margin-top: 8px;
  cursor: pointer;
}

.form-feedback {
  display: none;
  padding: 13px 16px;
  color: #dce9dc;
  border: 1px solid rgba(156, 255, 69, 0.28);
  border-radius: 10px;
  background: var(--green-soft);
  font-size: 13px;
}

.form-feedback.active {
  display: block;
}

.site-footer {
  padding: 42px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: start;
}

.site-footer .brand {
  width: 310px;
  height: 76px;
  margin-bottom: 15px;
}

.site-footer .brand-logo {
  top: -69px;
  left: -35px;
  width: 360px;
}

@media (min-width: 721px) and (max-width: 900px) {
  .brand {
    width: 205px;
    height: 51px;
  }

  .brand-logo {
    top: -45px;
    left: -23px;
    width: 238px;
  }
}

.site-footer p {
  max-width: 370px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 27px;
  padding-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

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

.copyright {
  grid-column: 1 / -1;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.whatsapp {
  position: fixed;
  right: 25px;
  bottom: 24px;
  z-index: 70;
  display: flex;
  min-height: 54px;
  gap: 9px;
  align-items: center;
  padding: 0 19px;
  color: #061004;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 15px 36px rgba(50, 112, 23, 0.34);
  font-size: 13px;
  font-weight: 800;
}

.whatsapp svg {
  width: 22px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 580ms ease, transform 580ms ease;
}

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

@media (max-width: 980px) {
  .hero-layout,
  .split,
  .benefits-layout,
  .faq-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .hero-visual {
    max-width: 670px;
    margin: 0 auto;
  }

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

  .service-card {
    min-height: unset;
  }

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

  .project-card {
    max-width: 560px;
  }

  .project-screen {
    height: 300px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 38px, 560px);
  }

  .site-header {
    padding: 18px 0;
  }

  .brand-logo {
    top: -42px;
    left: -22px;
    width: 223px;
  }

  .brand {
    width: 192px;
    height: 48px;
  }

  .site-footer .brand {
    width: 226px;
    height: 56px;
  }

  .site-footer .brand-logo {
    top: -50px;
    left: -26px;
    width: 263px;
  }

  .nav-links {
    position: fixed;
    top: 73px;
    left: 19px;
    right: 19px;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #10161e;
    box-shadow: var(--shadow);
  }

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

  .nav-links > a:not(.button) {
    padding: 15px 12px;
  }

  .nav-links .button {
    margin-top: 8px;
  }

  .menu-toggle {
    display: grid;
    width: 45px;
    height: 45px;
    gap: 6px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 19px;
    height: 2px;
    background: var(--white-soft);
    transition: transform 190ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

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

  .hero h1 {
    font-size: clamp(43px, 14vw, 56px);
  }

  .hero-actions {
    flex-direction: column;
    margin-bottom: 40px;
  }

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

  .trust-row div {
    min-width: 0;
  }

  .trust-row div + div {
    padding-left: 10px;
  }

  .trust-row strong {
    font-size: 13px;
  }

  .trust-row span {
    font-size: 11px;
  }

  .hero-visual {
    padding-top: 15px;
  }

  .dashboard-body {
    padding: 22px 18px 25px;
  }

  .preview-head {
    margin-bottom: 28px;
  }

  .preview-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .conversion-card {
    display: none;
  }

  .preview-cards {
    margin-top: 27px;
  }

  .floating-note {
    right: 8px;
    bottom: 15px;
  }

  .about-text > p {
    font-size: 17px;
  }

  .pillars,
  .steps,
  .benefit-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 25px 5px 28px;
  }

  .step span {
    margin-bottom: 22px;
  }

  .section-heading {
    display: block;
    margin-bottom: 38px;
  }

  .section-heading .text-link {
    margin-top: 24px;
  }

  .project-caption {
    display: block;
  }

  .project-caption h3 {
    margin-bottom: 7px;
  }

  .contact-panel {
    padding: 29px 20px;
  }

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

  .footer-links {
    flex-wrap: wrap;
    padding-top: 0;
  }

  .whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp span {
    display: none;
  }
}

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

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