:root {
  --ink: #0b1020;
  --ink-soft: #151b2f;
  --text: #3e465d;
  --muted: #697189;
  --line: #e5e8f0;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --surface-blue: #eef8ff;
  --surface-purple: #f7f1ff;
  --blue: #087ed1;
  --blue-deep: #075ea8;
  --cyan: #11b8ee;
  --purple: #8b36d8;
  --purple-deep: #6720aa;
  --green: #19a966;
  --gradient: linear-gradient(135deg, #087ed1 0%, #5d56d8 48%, #8b36d8 100%);
  --gradient-soft: linear-gradient(135deg, rgba(8, 126, 209, 0.1), rgba(139, 54, 216, 0.1));
  --shadow-sm: 0 12px 32px rgba(24, 32, 61, 0.08);
  --shadow-md: 0 24px 70px rgba(24, 32, 61, 0.12);
  --shadow-lg: 0 34px 100px rgba(15, 20, 40, 0.2);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 13vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 9vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

p {
  color: var(--text);
}

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

.section,
.section-shell {
  padding-block: 76px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(11, 16, 32, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(11, 16, 32, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  width: 172px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto;
  max-height: calc(100dvh - var(--header-height));
  display: grid;
  gap: 4px;
  padding: 18px 16px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 56px rgba(11, 16, 32, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 13px;
  color: var(--text);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue-deep);
  background: var(--surface-blue);
}

.site-nav .nav-cta {
  justify-content: center;
  margin-top: 8px;
  color: #fff;
  background: var(--gradient);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 54px;
  background:
    linear-gradient(180deg, #fbfcff 0%, #f6f9ff 62%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(11, 16, 32, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 16, 32, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 76%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
  pointer-events: none;
}

.hero-glow-blue {
  width: 320px;
  height: 320px;
  top: -170px;
  left: -150px;
  background: radial-gradient(circle, rgba(17, 184, 238, 0.23), transparent 68%);
}

.hero-glow-purple {
  width: 390px;
  height: 390px;
  top: 180px;
  right: -240px;
  background: radial-gradient(circle, rgba(139, 54, 216, 0.19), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 52px;
}

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

.hero-badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(8, 126, 209, 0.17);
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 26px rgba(8, 126, 209, 0.07);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(25, 169, 102, 0.12);
}

.hero h1 span {
  display: block;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--text);
  font-size: 1.05rem;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-block: 30px 26px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button svg,
.text-link svg,
.project-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

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

.button-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 18px 40px rgba(75, 83, 211, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 48px rgba(75, 83, 211, 0.32);
}

.button-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(11, 16, 32, 0.06);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(8, 126, 209, 0.28);
  background: #fff;
}

.button-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.button-full {
  width: 100%;
}

.hero-trust {
  display: grid;
  gap: 12px;
}

.hero-trust div {
  display: grid;
  gap: 2px;
  padding-left: 14px;
  border-left: 3px solid var(--blue);
}

.hero-trust div:nth-child(2) {
  border-color: var(--purple);
}

.hero-trust strong {
  font-size: 0.9rem;
}

.hero-trust span {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  min-height: 390px;
  isolation: isolate;
}

.visual-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(93, 86, 216, 0.16);
  border-radius: 50%;
}

.visual-orbit-one {
  width: 330px;
  height: 330px;
  top: 6px;
  right: -52px;
}

.visual-orbit-two {
  width: 240px;
  height: 240px;
  bottom: -16px;
  left: -50px;
  border-color: rgba(17, 184, 238, 0.18);
}

.showcase-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.showcase-main {
  position: absolute;
  top: 0;
  left: 0;
  width: min(92%, 460px);
  border-radius: 24px;
  transform: rotate(-2.2deg);
}

.window-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.75);
  background: #101629;
}

.window-bar > span,
.preview-top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.window-address {
  min-width: 0;
  flex: 1;
  margin-left: 6px;
  overflow: hidden;
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.showcase-content {
  min-height: 270px;
  padding: 28px 24px;
  background:
    radial-gradient(circle at 90% 15%, rgba(139, 54, 216, 0.2), transparent 28%),
    linear-gradient(145deg, #ffffff, #f0f8ff 56%, #faf3ff);
}

.showcase-kicker {
  width: fit-content;
  margin-bottom: 16px;
  color: var(--blue-deep);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.showcase-title,
.showcase-copy,
.showcase-button,
.showcase-chips span {
  border-radius: 999px;
}

.showcase-title {
  width: 86%;
  height: 22px;
  margin-bottom: 8px;
  background: var(--ink);
}

.showcase-title.short {
  width: 60%;
  margin-bottom: 18px;
}

.showcase-copy {
  width: 78%;
  height: 8px;
  margin-bottom: 7px;
  background: #cdd3df;
}

.showcase-copy.medium {
  width: 64%;
}

.showcase-button {
  width: 118px;
  height: 34px;
  margin-block: 22px;
  background: var(--gradient);
}

.showcase-chips {
  display: flex;
  gap: 8px;
}

.showcase-chips span {
  width: 62px;
  height: 22px;
  border: 1px solid rgba(8, 126, 209, 0.13);
  background: rgba(8, 126, 209, 0.08);
}

.showcase-side {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: min(58%, 278px);
  min-height: 218px;
  padding: 18px;
  border-radius: 22px;
  transform: rotate(3.5deg);
  background: linear-gradient(155deg, #101629, #1a2140);
}

.mini-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mini-logo {
  width: 34px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}

.mini-menu {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.mini-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mini-dashboard-grid span {
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
}

.mini-chart {
  height: 58px;
  display: flex;
  align-items: flex-end;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.mini-chart span {
  width: 100%;
  height: 75%;
  clip-path: polygon(0 86%, 18% 67%, 37% 75%, 51% 40%, 67% 55%, 82% 18%, 100% 5%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(17, 184, 238, 0.7), rgba(139, 54, 216, 0.18));
}

.showcase-label {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(11, 16, 32, 0.07);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  font-size: 0.68rem;
  font-weight: 800;
}

.showcase-label svg {
  width: 15px;
  height: 15px;
  color: var(--blue);
}

.label-sites {
  top: 28px;
  right: -5px;
}

.label-systems {
  bottom: 16px;
  left: -2px;
}

.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 52px;
}

.stat-card {
  min-width: 0;
  display: grid;
  gap: 2px;
  padding: 17px 14px;
  border: 1px solid rgba(11, 16, 32, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(11, 16, 32, 0.05);
}

.stat-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.audience-strip {
  padding-block: 24px;
  border-block: 1px solid var(--line);
  background: #fff;
}

.audience-inner {
  display: grid;
  gap: 14px;
}

.audience-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.audience-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--text);
  background: var(--surface-soft);
  font-size: 0.75rem;
  font-weight: 700;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section-head > div,
.section-head h2,
.section-head > p {
  max-width: 760px;
}

.section-head > p {
  margin-bottom: 0;
}

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

.section-head.centered h2,
.section-head.centered p {
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 27px;
  height: 3px;
  border-radius: 999px;
  background: var(--gradient);
}

.eyebrow-light {
  color: #8be3ff;
}

.project-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.project-filters::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: #fff;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.filter-button.is-active {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.projects-grid {
  display: grid;
  gap: 20px;
}

.project-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-card:hover {
  border-color: rgba(93, 86, 216, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.project-card[hidden] {
  display: none;
}

.project-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-preview {
  min-height: 250px;
  padding: 18px;
  overflow: hidden;
}

.preview-browser {
  height: 100%;
  min-height: 214px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(11, 16, 32, 0.17);
  transform: translateY(8px);
  transition: transform 0.35s ease;
}

.project-card:hover .preview-browser {
  transform: translateY(0);
}

.preview-top {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-inline: 10px;
  background: rgba(10, 14, 27, 0.95);
}

.preview-top span {
  width: 5px;
  height: 5px;
}

.project-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 23px;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.project-meta span:last-child {
  color: var(--blue-deep);
}

.project-body h3 {
  font-size: 1.35rem;
}

.project-body p {
  margin-bottom: 18px;
  font-size: 0.91rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}

.project-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--text);
  background: var(--surface-soft);
  font-size: 0.68rem;
  font-weight: 700;
}

.project-link {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.project-link svg {
  transition: transform 0.2s ease;
}

.project-card:hover .project-link svg {
  transform: translate(2px, -2px);
}

.project-promo-card {
  border: 1px solid rgba(93, 86, 216, 0.2);
  background:
    radial-gradient(circle at top right, rgba(117, 94, 255, 0.20), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7f6ff 52%, #eef6ff 100%);
}

.project-promo-card:hover {
  border-color: rgba(93, 86, 216, 0.35);
}

.project-promo-inner {
  height: 100%;
  display: grid;
  gap: 18px;
  padding: 24px;
}

.project-promo-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.1;
}

.project-promo-copy p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
}

.project-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.project-promo-card .button {
  min-height: 50px;
}

.filter-empty {
  margin: 30px 0 0;
  padding: 22px;
  border-radius: 18px;
  text-align: center;
  background: var(--surface-soft);
}

.preview-tax {
  background: linear-gradient(140deg, #0c2136, #164968 58%, #d59b47);
}

.tax-layout {
  min-height: 186px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8px;
  padding: 20px 16px;
  color: #fff;
  background: linear-gradient(140deg, #0f2538, #1c4d68);
}

.tax-copy small,
.forensic-layout small,
.fitness-head small,
.automation-copy small,
.care-copy small,
.psychology-copy small {
  display: block;
  margin-bottom: 10px;
  font-size: 0.44rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.tax-copy strong,
.forensic-layout strong,
.fitness-layout > strong,
.automation-copy strong,
.care-copy strong,
.psychology-copy strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  line-height: 1.2;
}

.tax-copy p,
.care-copy p,
.psychology-copy p {
  width: 86%;
  height: 4px;
  margin: 10px 0 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.27);
}

.tax-copy p.short,
.care-copy p.short,
.psychology-copy p.short {
  width: 60%;
  margin-top: 5px;
}

.tax-copy button,
.care-copy button {
  margin-top: 16px;
  padding: 6px 9px;
  border: 0;
  border-radius: 999px;
  color: #13293b;
  background: #e7bd6c;
  font-size: 0.48rem;
  font-weight: 900;
}

.tax-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.tax-ring {
  position: absolute;
  border: 1px solid rgba(231, 189, 108, 0.55);
  border-radius: 50%;
}

.ring-one {
  width: 94px;
  height: 94px;
}

.ring-two {
  width: 66px;
  height: 66px;
}

.tax-symbol {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #17384f;
  background: linear-gradient(135deg, #f5d899, #c78b34);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  transform: rotate(-8deg);
}

.preview-forensic {
  background: linear-gradient(145deg, #0b0c0e, #2a241b 66%, #b58a43);
}

.forensic-layout {
  min-height: 186px;
  padding: 18px;
  color: #f4ead8;
  text-align: center;
  background: radial-gradient(circle at 50% 25%, rgba(181, 138, 67, 0.2), transparent 32%), #111214;
}

.forensic-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 auto 9px;
  border: 1px solid #b58a43;
  border-radius: 50%;
}

.forensic-mark span {
  font-family: serif;
  font-size: 1.3rem;
  color: #d7b16e;
}

.forensic-layout strong {
  max-width: 170px;
  margin-inline: auto;
}

.forensic-line {
  width: 42px;
  height: 1px;
  margin: 13px auto;
  background: #b58a43;
}

.forensic-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.forensic-services span {
  height: 30px;
  border: 1px solid rgba(181, 138, 67, 0.27);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
}

.preview-fitness {
  background: linear-gradient(140deg, #07090d, #192017 60%, #9bea45);
}

.fitness-layout {
  min-height: 186px;
  padding: 16px;
  color: #fff;
  background: radial-gradient(circle at 88% 18%, rgba(155, 234, 69, 0.22), transparent 28%), #0d100f;
}

.fitness-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}

.fitness-head span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #0b1009;
  background: #9bea45;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
}

.fitness-head small {
  margin: 0;
}

.fitness-layout > strong {
  max-width: 174px;
  font-size: 0.88rem;
}

.fitness-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-top: 15px;
}

.fitness-metrics > span {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.fitness-metrics small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-family: Inter, sans-serif;
  font-size: 0.45rem;
  font-weight: 600;
}

.fitness-chart {
  height: 38px;
  display: flex;
  align-items: flex-end;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.fitness-chart i {
  width: 100%;
  height: 75%;
  clip-path: polygon(0 88%, 15% 65%, 31% 72%, 48% 44%, 62% 56%, 78% 25%, 100% 5%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(155, 234, 69, 0.8), rgba(155, 234, 69, 0.1));
}

.preview-automation {
  background: linear-gradient(140deg, #062b4a, #0b6c9f 52%, #8a32d5);
}

.automation-layout {
  min-height: 186px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 10px;
  padding: 17px;
  color: #fff;
  background: radial-gradient(circle at 80% 18%, rgba(139, 54, 216, 0.27), transparent 31%), linear-gradient(145deg, #071a2e, #0a456b);
}

.automation-copy {
  padding-top: 10px;
}

.automation-lines {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.automation-lines span {
  width: 80%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.automation-lines span:last-child {
  width: 58%;
}

.chat-phone {
  align-self: end;
  min-height: 156px;
  padding: 10px 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 17px 17px 7px 7px;
  background: #f5f7fb;
  transform: rotate(3deg) translateY(12px);
}

.chat-head {
  height: 18px;
  display: flex;
  align-items: center;
  padding-inline: 4px;
  border-bottom: 1px solid #e3e6ee;
}

.chat-head span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gradient);
}

.chat-phone p {
  width: 74%;
  height: 17px;
  margin: 9px 0 0;
  border-radius: 8px 8px 8px 2px;
  background: #e7eaf1;
}

.chat-phone p.chat-right {
  width: 82%;
  margin-left: auto;
  background: #d8f3e4;
  border-radius: 8px 8px 2px 8px;
}

.chat-phone p.short {
  width: 55%;
}

.preview-care {
  background: linear-gradient(140deg, #eee0d1, #b9d9cb 55%, #4b826f);
}

.care-layout {
  min-height: 186px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 12px;
  padding: 16px;
  color: #2d5248;
  background: linear-gradient(145deg, #fffaf4, #ecf6f1);
}

.care-photo {
  min-height: 150px;
  overflow: hidden;
  border-radius: 54px 54px 15px 54px;
  background: linear-gradient(145deg, #d9b8a0, #729b8a);
}

.care-photo span {
  width: 70px;
  height: 110px;
  display: block;
  margin: 28px auto 0;
  border-radius: 50% 50% 20% 20%;
  background: linear-gradient(180deg, #f1d8c3 0 28%, #edf5ee 29% 100%);
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.12);
}

.care-copy {
  align-self: center;
}

.care-copy small {
  color: #4b826f;
}

.care-copy p {
  background: rgba(45, 82, 72, 0.2);
}

.care-copy button {
  color: #fff;
  background: #4b826f;
}

.preview-psychology {
  background: linear-gradient(140deg, #e9dff1, #c9d9e8 58%, #8e6aaa);
}

.psychology-layout {
  min-height: 186px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 6px;
  padding: 18px;
  color: #4f3c62;
  background: linear-gradient(145deg, #fffafd, #edf3f8);
}

.psychology-copy {
  align-self: center;
}

.psychology-copy small {
  color: #8e6aaa;
}

.psychology-copy p {
  background: rgba(79, 60, 98, 0.18);
}

.psychology-button {
  width: 78px;
  height: 18px;
  margin-top: 15px;
  border-radius: 999px;
  background: #8e6aaa;
}

.psychology-shape {
  position: relative;
  display: grid;
  place-items: center;
}

.psychology-shape::before,
.psychology-shape::after,
.psychology-shape span {
  content: "";
  position: absolute;
  border-radius: 48% 52% 62% 38%;
}

.psychology-shape::before {
  width: 100px;
  height: 120px;
  background: #d8c4e6;
  transform: rotate(9deg);
}

.psychology-shape::after {
  width: 72px;
  height: 95px;
  background: #b9d1df;
  transform: rotate(-10deg);
}

.psychology-shape span {
  z-index: 1;
  width: 38px;
  height: 52px;
  background: linear-gradient(180deg, #e9cdbb 0 32%, #fff 33%);
}

.section-soft {
  background:
    radial-gradient(circle at 12% 0%, rgba(17, 184, 238, 0.11), transparent 28%),
    radial-gradient(circle at 88% 100%, rgba(139, 54, 216, 0.1), transparent 30%),
    var(--surface-soft);
}

.services-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 26px 23px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 126, 209, 0.1), transparent 68%);
}

.service-card-highlight::after {
  background: radial-gradient(circle, rgba(139, 54, 216, 0.14), transparent 68%);
}

.service-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #d9ddea;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 17px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 14px 28px rgba(75, 83, 211, 0.22);
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-card p {
  margin-bottom: 18px;
  font-size: 0.93rem;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
}

.process-layout {
  display: grid;
  gap: 40px;
}

.process-intro {
  max-width: 620px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-deep);
  font-weight: 900;
}

.process-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 15px;
  padding-bottom: 28px;
}

.process-steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 47px;
  bottom: 0;
  left: 25px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(8, 126, 209, 0.42), rgba(139, 54, 216, 0.15));
}

.process-steps li > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 126, 209, 0.16);
  border-radius: 17px;
  color: var(--blue-deep);
  background: var(--surface-blue);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

.process-steps h3 {
  margin-top: 3px;
}

.process-steps p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.proof-section {
  padding-top: 18px;
}

.proof-card {
  position: relative;
  display: grid;
  gap: 48px;
  overflow: hidden;
  padding: 34px 24px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(17, 184, 238, 0.22), transparent 30%),
    radial-gradient(circle at 88% 85%, rgba(139, 54, 216, 0.3), transparent 35%),
    linear-gradient(145deg, #091224, #121d38 58%, #21133a);
  box-shadow: var(--shadow-lg);
}

.proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
  pointer-events: none;
}

.proof-copy,
.proof-visual {
  position: relative;
  z-index: 1;
}

.proof-copy h2 {
  color: #fff;
}

.proof-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.proof-visual {
  min-height: 330px;
}

.proof-device {
  width: min(88%, 310px);
  min-height: 310px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
  transform: rotate(3deg);
}

.proof-device-top {
  height: 34px;
  background: #0d1428;
}

.proof-device-content {
  padding: 28px 22px;
  background: linear-gradient(145deg, #fff, #f0f7ff);
}

.proof-logo {
  width: 42px;
  height: 18px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--gradient);
}

.proof-line {
  width: 82%;
  height: 8px;
  margin-bottom: 9px;
  border-radius: 999px;
  background: #d5dae5;
}

.proof-line.large {
  width: 94%;
  height: 24px;
  margin-bottom: 14px;
  background: var(--ink);
}

.proof-line.short {
  width: 58%;
}

.proof-cta {
  width: 126px;
  height: 36px;
  margin-block: 22px;
  border-radius: 999px;
  background: var(--gradient);
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.proof-cards span {
  height: 70px;
  border: 1px solid rgba(8, 126, 209, 0.1);
  border-radius: 14px;
  background: rgba(8, 126, 209, 0.07);
}

.proof-badge {
  position: absolute;
  display: grid;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  color: #fff;
  background: rgba(12, 20, 40, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.proof-badge strong {
  font-size: 0.74rem;
}

.proof-badge span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.58rem;
}

.badge-fast {
  top: 25px;
  left: 0;
}

.badge-clear {
  right: 0;
  bottom: 24px;
}

.faq-layout {
  display: grid;
  gap: 32px;
}

.faq-intro {
  max-width: 580px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(11, 16, 32, 0.04);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 19px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  line-height: 1.35;
}

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

.faq-item summary span {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--surface-soft);
}

.faq-item summary span::before,
.faq-item summary span::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 7px;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.faq-item summary span::after {
  transform: rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: rotate(0deg);
}

.faq-item p {
  margin: -3px 0 0;
  padding: 0 19px 20px;
  font-size: 0.9rem;
}

.contact-section {
  padding-top: 28px;
  background: linear-gradient(180deg, #fff, #f6f8fd);
}

.contact-card {
  display: grid;
  gap: 34px;
  padding: 27px 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
}

.contact-highlights {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.contact-highlights div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-highlights svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 4px;
  border-radius: 50%;
  color: #fff;
  background: var(--gradient);
  stroke-width: 2.3;
}

.contact-highlights span {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.lead-form {
  padding: 20px;
  border: 1px solid rgba(8, 126, 209, 0.1);
  border-radius: 22px;
  background: var(--surface-soft);
}

.form-grid {
  display: grid;
  gap: 15px;
  margin-bottom: 18px;
}

.form-field {
  min-width: 0;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dfe3ec;
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
  padding: 12px 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 118px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(8, 126, 209, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9aa1b2;
}

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

.site-footer {
  padding-top: 54px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 10% 0%, rgba(17, 184, 238, 0.14), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(139, 54, 216, 0.18), transparent 30%),
    #070c18;
}

.footer-main {
  display: grid;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand-area img {
  width: min(100%, 270px);
  height: auto;
  margin-bottom: 16px;
}

.footer-brand-area p {
  max-width: 430px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 0.83rem;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-block: 20px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.66);
}

.floating-actions {
  position: fixed;
  right: max(15px, env(safe-area-inset-right));
  bottom: max(15px, env(safe-area-inset-bottom));
  z-index: 80;
  max-width: calc(100vw - 30px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.back-to-top,
.floating-whatsapp {
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-inline: 15px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(13, 20, 40, 0.2);
}

.back-to-top {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(8, 126, 209, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.94);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  box-shadow: 0 18px 38px rgba(8, 126, 209, 0.2);
}

.floating-whatsapp {
  color: #fff;
  background: #1bb96d;
  box-shadow: 0 16px 34px rgba(27, 185, 109, 0.32);
}

.back-to-top svg,
.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  stroke-width: 1.9;
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 370px) {
  .floating-actions {
    right: 10px;
    bottom: 10px;
    max-width: calc(100vw - 20px);
    gap: 7px;
  }

  .back-to-top,
  .floating-whatsapp {
    height: 48px;
    padding-inline: 12px;
    font-size: 0.75rem;
  }
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

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

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 580px;
  }

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

  .showcase-main {
    width: min(88%, 520px);
  }

  .showcase-content {
    min-height: 325px;
    padding: 38px 34px;
  }

  .showcase-side {
    width: min(48%, 290px);
    min-height: 244px;
  }

  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .stat-card {
    padding: 19px 16px;
  }

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

  .project-featured {
    grid-column: span 2;
  }

  .project-promo-card {
    grid-column: span 2;
  }

  .project-featured > a {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
  }

  .project-featured .project-preview {
    min-height: 100%;
  }

  .project-featured .preview-browser {
    min-height: 300px;
  }

  .project-featured .tax-layout {
    min-height: 272px;
    padding: 35px 28px;
  }

  .project-featured .tax-copy strong {
    font-size: 1.25rem;
  }

  .project-featured .tax-symbol {
    width: 72px;
    height: 72px;
    font-size: 2rem;
  }

  .project-featured .ring-one {
    width: 148px;
    height: 148px;
  }

  .project-featured .ring-two {
    width: 104px;
    height: 104px;
  }

  .project-featured .project-body {
    padding: 32px 28px;
  }

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

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

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

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

  .footer-column:last-child {
    grid-column: 2;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

}

@media (min-width: 880px) {
  :root {
    --header-height: 84px;
  }

  .section,
  .section-shell {
    padding-block: 104px;
  }

  .brand {
    width: 222px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    max-height: none;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    min-height: 42px;
    padding: 9px 11px;
    font-size: 0.78rem;
  }

  .site-nav .nav-cta {
    min-height: 44px;
    margin: 0 0 0 7px;
    padding-inline: 17px;
    box-shadow: 0 12px 28px rgba(75, 83, 211, 0.2);
  }

  .hero {
    padding-top: 82px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
    gap: 64px;
    align-items: center;
  }

  h1 {
    font-size: clamp(4rem, 6vw, 5.65rem);
  }

  .hero-lead {
    font-size: 1.12rem;
  }

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

  .showcase-main {
    top: 18px;
    width: min(91%, 510px);
  }

  .showcase-side {
    bottom: 4px;
  }

  .hero-stats {
    margin-top: 70px;
  }

  .audience-inner {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 22px;
  }

  .section-head:not(.centered) {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 48px;
  }

  .section-head:not(.centered) > p {
    padding-bottom: 8px;
  }

  .project-filters {
    margin-bottom: 34px;
  }

  .projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .project-featured {
    grid-column: span 2;
  }

  .project-promo-card {
    grid-column: 1 / -1;
  }

  .project-promo-inner {
    grid-template-columns: minmax(0, 1.25fr) auto;
    align-items: end;
    gap: 28px;
    padding: 30px;
  }

  .project-promo-actions {
    justify-content: flex-end;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .service-card-highlight {
    grid-column: auto;
  }

  .process-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
    gap: 80px;
    align-items: start;
  }

  .process-intro {
    position: sticky;
    top: calc(var(--header-height) + 35px);
  }

  .process-steps li {
    grid-template-columns: 64px 1fr;
    gap: 22px;
    padding-bottom: 34px;
  }

  .process-steps li:not(:last-child)::before {
    top: 57px;
    left: 31px;
  }

  .process-steps li > span {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .proof-card {
    grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
    align-items: center;
    padding: 58px 62px;
    border-radius: 36px;
  }

  .proof-visual {
    min-height: 390px;
  }

  .proof-device {
    width: 330px;
    min-height: 350px;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
    gap: 74px;
    align-items: start;
  }

  .faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 35px);
  }

  .contact-card {
    grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
    align-items: center;
    gap: 58px;
    padding: 48px;
    border-radius: 36px;
  }

  .lead-form {
    padding: 26px;
  }

  .footer-main {
    grid-template-columns: 1.45fr 0.65fr 1fr 0.65fr;
    gap: 42px;
  }

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

@media (min-width: 1180px) {
  .site-nav a {
    padding-inline: 14px;
    font-size: 0.81rem;
  }

  .hero-grid {
    gap: 88px;
  }

  .project-preview {
    min-height: 268px;
  }

  .preview-browser {
    min-height: 230px;
  }
}

@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 {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   THUMBNAILS REAIS DOS PROJETOS — 03/08/2026
   ========================================================= */
.project-card.theme-tax {
  --project-accent: #d8a64a;
  --project-accent-2: #2aa67d;
  --project-accent-rgb: 216, 166, 74;
  --project-accent-dark: #966c1f;
}

.project-card.theme-forensic {
  --project-accent: #c79a42;
  --project-accent-2: #0e263d;
  --project-accent-rgb: 199, 154, 66;
  --project-accent-dark: #8b651e;
}

.project-card.theme-fitness {
  --project-accent: #ffd400;
  --project-accent-2: #151515;
  --project-accent-rgb: 255, 212, 0;
  --project-accent-dark: #8d7400;
}

.project-card.theme-automation {
  --project-accent: #6e43ff;
  --project-accent-2: #00aef3;
  --project-accent-rgb: 110, 67, 255;
  --project-accent-dark: #5334c6;
}

.project-card.theme-care {
  --project-accent: #148b87;
  --project-accent-2: #a9d9ce;
  --project-accent-rgb: 20, 139, 135;
  --project-accent-dark: #0c6764;
}

.project-card.theme-psychology {
  --project-accent: #b9967f;
  --project-accent-2: #eadbcf;
  --project-accent-rgb: 185, 150, 127;
  --project-accent-dark: #856653;
}

.project-card[class*="theme-"] {
  position: relative;
  border-color: rgba(var(--project-accent-rgb), 0.22);
}

.project-card[class*="theme-"]::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  height: 4px;
  background: linear-gradient(90deg, var(--project-accent), var(--project-accent-2));
}

.project-card[class*="theme-"]:hover {
  border-color: rgba(var(--project-accent-rgb), 0.46);
  box-shadow: 0 24px 54px rgba(12, 18, 38, 0.14);
}

.project-preview.has-thumb {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  padding: 14px;
  background:
    radial-gradient(circle at top left, rgba(var(--project-accent-rgb), 0.18), transparent 42%),
    linear-gradient(180deg, rgba(250, 251, 255, 0.98) 0%, rgba(244, 247, 252, 0.98) 100%);
  border-bottom: 1px solid rgba(var(--project-accent-rgb), 0.2);
}

.project-thumb {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(var(--project-accent-rgb), 0.20),
    0 0 0 6px rgba(var(--project-accent-rgb), 0.06),
    0 22px 42px rgba(var(--project-accent-rgb), 0.24),
    0 12px 28px rgba(10, 18, 36, 0.12);
}

.project-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  transition: transform 0.45s ease, filter 0.35s ease, box-shadow 0.35s ease;
}

.project-preview.has-thumb::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 8, 20, 0.22) 100%);
}

.project-card[class*="theme-"]:hover .project-thumb {
  box-shadow:
    0 0 0 1px rgba(var(--project-accent-rgb), 0.22),
    0 0 0 8px rgba(var(--project-accent-rgb), 0.09),
    0 26px 52px rgba(var(--project-accent-rgb), 0.30),
    0 16px 34px rgba(10, 18, 36, 0.16);
}

.project-card[class*="theme-"]:hover .project-thumb img {
  transform: scale(1.03);
  filter: saturate(1.04) contrast(1.02);
}

.project-thumb-label {
  position: absolute;
  right: 26px;
  bottom: 25px;
  z-index: 2;
  max-width: calc(100% - 52px);
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 10, 24, 0.76);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-card[class*="theme-"] .project-body {
  border-top: 3px solid rgba(var(--project-accent-rgb), 0.08);
}

.project-card[class*="theme-"] .project-meta span:last-child {
  color: var(--project-accent-dark);
}

.project-card[class*="theme-"] .project-tags span {
  color: var(--project-accent-dark);
  background: rgba(var(--project-accent-rgb), 0.09);
  box-shadow: inset 0 0 0 1px rgba(var(--project-accent-rgb), 0.11);
}

.project-card[class*="theme-"] .project-link {
  color: var(--project-accent-dark);
}

@media (max-width: 480px) {
  .project-preview.has-thumb {
    padding: 10px;
  }

  .project-preview.has-thumb::after {
    inset: 10px;
  }

  .project-thumb {
    border-radius: 14px;
    box-shadow:
      0 0 0 1px rgba(var(--project-accent-rgb), 0.18),
      0 0 0 4px rgba(var(--project-accent-rgb), 0.05),
      0 14px 28px rgba(var(--project-accent-rgb), 0.20),
      0 8px 18px rgba(10, 18, 36, 0.10);
  }

  .project-thumb-label {
    right: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
    padding: 6px 9px;
    font-size: 0.62rem;
  }
}
