﻿:root {
  --bg: #000000;
  --surface: #050505;
  --surface-soft: #101010;
  --ink: #f4f8fb;
  --muted: #9fb1c3;
  --line: #202020;
  --brand: #d4a514;
  --brand-dark: #f4c430;
  --accent: #f4c430;
  --deep: #000000;
  --radius: 8px;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

::selection {
  color: #000000;
  background: var(--brand-dark);
}

::-moz-selection {
  color: #000000;
  background: var(--brand-dark);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

main {
  display: flex;
  flex-direction: column;
}

main > section {
  order: 3;
}

.intro {
  order: 1;
}

.hero {
  order: 2;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 32px;
  margin-right: auto;
  color: #8f8f8f;
  font-size: 1.02rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 23px 0 22px;
  transition: color 0.28s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--brand-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a:hover,
.site-nav a.is-active,
.text-link:hover,
.social-links a:hover {
  color: var(--brand-dark);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--brand-dark);
  transition: color 0.18s ease, transform 0.18s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.social-links svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.nav-menu {
  position: relative;
}

.has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.has-dropdown::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  order: 2;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.24s ease;
}

.nav-menu:hover .has-dropdown::before,
.nav-menu:focus-within .has-dropdown::before {
  transform: translateY(1px) rotate(225deg);
}

.submenu {
  position: absolute;
  top: 100%;
  left: -18px;
  display: grid;
  min-width: 190px;
  gap: 2px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.submenu a {
  padding: 7px 9px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.submenu a::after {
  display: none;
}

.submenu a:hover {
  background: rgba(244, 196, 48, 0.08);
}

.nav-menu:hover .submenu,
.nav-menu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-toggle {
  margin-left: 18px;
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(400px, 0.72fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  min-height: 620px;
  padding-top: clamp(18px, 2.6vw, 38px);
  padding-bottom: clamp(18px, 3vw, 36px);
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.88)),
    url("assets/images/backgrounds/analytics-dashboard.jpg?v=20260528") center/cover;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 26px;
  font-size: clamp(2.1rem, 3.1vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 26px;
  color: #c5d2df;
  font-size: 0.98rem;
}

.hero-content p.hero-story {
  width: 100%;
  max-width: 980px;
  margin-bottom: 20px;
  color: #d6e4ef;
  font-size: clamp(1.02rem, 1.16vw, 1.2rem);
  line-height: 1.72;
  font-weight: 500;
}

.hero-content .hero-story:first-of-type {
  color: #ffffff;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button.primary {
  color: #050505;
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(212, 165, 20, 0.28);
}

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

.button.secondary.dark {
  color: white;
  background: var(--deep);
  border-color: var(--deep);
}

.button.light {
  color: #050505;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: none;
  text-transform: uppercase;
}

.dashboard-preview {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(13, 27, 42, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.preview-bar {
  display: flex;
  gap: 7px;
  padding: 0 0 14px;
}

.preview-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555555;
}

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

.preview-grid article {
  min-height: 104px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #060606;
}

.preview-grid .wide {
  grid-column: span 2;
}

.preview-grid span,
.feature-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.preview-grid strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
}

.sparkline {
  height: 34px;
  margin-top: 12px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, transparent 45%, var(--brand) 46% 54%, transparent 55%),
    linear-gradient(to top, rgba(212, 165, 20, 0.2), rgba(212, 165, 20, 0.04));
}

.sparkline.two {
  background: linear-gradient(25deg, transparent 42%, var(--accent) 43% 52%, transparent 53%),
    linear-gradient(to top, rgba(240, 180, 41, 0.15), rgba(240, 180, 41, 0.02));
}

.bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 92px;
}

.bars i {
  flex: 1;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(180deg, var(--brand-dark), #d6c274);
}

.donut {
  width: 50px;
  height: 50px;
  margin-top: 12px;
  border-radius: 50%;
  background: conic-gradient(var(--brand) 72%, #25384b 0);
}

.mini-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.mini-list b {
  height: 8px;
  border-radius: 999px;
  background: #2b2b2b;
}

.split,
.contact,
.portfolio,
.faq {
  background: #000000;
}

.intro {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(420px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
  margin: clamp(6px, 1vw, 14px) clamp(20px, 5vw, 72px) clamp(14px, 2vw, 26px);
  padding: clamp(48px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.84)),
    url("assets/images/backgrounds/office-powerbi.jpg?v=20260528") center/cover;
}

.intro-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.intro-copy h2 {
  max-width: 620px;
  margin-bottom: 6px;
  font-size: clamp(2rem, 3.35vw, 4rem);
}

.intro-copy h3 {
  max-width: 360px;
  margin: 22px 0 24px;
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  line-height: 1.15;
}

.typewriter {
  min-height: calc(3em * 1.15);
}

.typewriter span {
  display: block;
  min-height: 1.15em;
}

.typewriter span:nth-child(1) {
  color: #ffffff;
}

.typewriter span:nth-child(2) {
  color: var(--brand-dark);
}

.typewriter span:nth-child(3) {
  color: #d4a514;
}

.typewriter span::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.92em;
  margin-left: 4px;
  vertical-align: -0.08em;
  background: var(--brand-dark);
  opacity: 0;
}

.typewriter.is-typing span.is-active::after {
  opacity: 1;
  animation: caretBlink 0.78s steps(1) infinite;
}

@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

.title-mark,
.stats article span {
  display: block;
  width: 68px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand-dark);
}

.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.stats::before {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  left: -42px;
  height: 52%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 84% 34%, rgba(255, 255, 255, 0.34), transparent 38%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.18) 78%, rgba(255, 255, 255, 0.08) 100%);
  filter: blur(18px);
  opacity: 0.92;
}

.stats article {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  min-height: 190px;
  align-content: center;
  padding: clamp(24px, 3vw, 42px);
  background: rgba(0, 0, 0, 0.72);
  color: white;
}

.stats article:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.48);
}

.stats article:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
}

.stats strong {
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  line-height: 1;
}

.stats p {
  max-width: 230px;
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
}

.competitor-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(460px, 0.98fr);
  justify-content: center;
  align-items: start;
  gap: clamp(36px, 4vw, 68px);
  background: #000000;
  padding-top: clamp(52px, 6vw, 92px);
  padding-bottom: clamp(56px, 7vw, 104px);
}

.competitor-title .eyebrow {
  max-width: 540px;
  color: #ffffff;
  font-size: clamp(1rem, 1.18vw, 1.35rem);
  line-height: 1.2;
  text-transform: none;
}

.competitor-title h2 {
  position: relative;
  max-width: 660px;
  margin-top: clamp(22px, 2.5vw, 34px);
  font-size: clamp(2.15rem, 3.15vw, 4rem);
  line-height: 1.16;
}

.competitor-title h2::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--brand-dark);
}

.competitor-copy {
  display: grid;
  justify-items: start;
  gap: clamp(12px, 1.5vw, 22px);
  padding-top: clamp(12px, 1.6vw, 26px);
}

.competitor-copy .highlight-text,
.competitor-copy .highlight-cta {
  display: block;
  padding: 0;
  color: #c5d2df;
  background: transparent;
  font-size: clamp(0.98rem, 1.08vw, 1.18rem);
  line-height: 1.75;
}

.competitor-copy .highlight-text {
  max-width: 760px;
}

.competitor-copy .highlight-cta {
  margin-top: 0;
  color: #ffffff;
  font-weight: 500;
}

.competitor-copy strong {
  color: #ffffff;
}

.warning-section {
  display: none;
  align-items: start;
  padding-top: clamp(26px, 3.5vw, 54px);
  padding-bottom: clamp(150px, 17vw, 260px);
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.warning-title .eyebrow {
  max-width: 680px;
  color: #9fbce0;
  font-size: clamp(0.7rem, 0.75vw, 0.86rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.warning-title h2 {
  max-width: 850px;
  margin: clamp(12px, 1.6vw, 24px) 0 0;
  font-size: clamp(2.6rem, 4.2vw, 5.65rem);
  line-height: 1.02;
}

.warning-copy {
  max-width: 840px;
  padding-top: 0;
}

.warning-copy p {
  color: #a8d0ff;
  font-size: clamp(0.9rem, 1vw, 1.08rem);
  font-weight: 500;
  line-height: 1.55;
}

.warning-copy p + p {
  margin-top: 28px;
}

.warning-copy .button {
  margin-top: 20px;
}

.text-link {
  display: inline-flex;
  color: var(--brand-dark);
  font-weight: 800;
}

.impact-section {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  padding-left: 0;
  background: #000000;
}

.impact-heading {
  display: grid;
  align-content: center;
  max-width: 1060px;
  min-height: 0;
  margin: 0 auto clamp(8px, 1vw, 16px);
  padding: clamp(4px, 0.8vw, 10px) clamp(20px, 5vw, 72px);
  text-align: center;
}

.impact-heading p {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: clamp(1rem, 1.22vw, 1.38rem);
  font-weight: 800;
  line-height: 1.2;
}

.impact-heading h2 {
  max-width: 880px;
  margin: 0 auto;
  font-size: clamp(1.08rem, 1.4vw, 1.68rem);
  line-height: 1.25;
}

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

.impact-panel {
  position: relative;
  display: grid;
  min-height: clamp(500px, 45vw, 620px);
  overflow: visible;
  background-position: center;
  background-size: cover;
}

.impact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
}

.impact-panel-blue {
  background-image: url("assets/images/backgrounds/office-powerbi.jpg?v=20260528");
}

.impact-panel-blue::before {
  background: rgba(23, 46, 76, 0.78);
}

.impact-panel-gold {
  background-image: url("assets/images/backgrounds/tough-business-decisions.jpg?v=20260528");
}

.impact-panel-gold::before {
  background: rgba(150, 138, 61, 0.82);
}

.impact-panel-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  max-width: 760px;
  padding: clamp(42px, 4.8vw, 78px) clamp(40px, 6.5vw, 118px);
  color: #ffffff;
}

.impact-panel-blue .impact-panel-content {
  padding-left: clamp(60px, 7vw, 126px);
}

.impact-panel-gold .impact-panel-content {
  max-width: 800px;
  padding-left: clamp(60px, 6.5vw, 120px);
}

.impact-panel-content h3 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 2.4vw, 3.12rem);
  line-height: 1.18;
}

.impact-panel-gold .impact-panel-content h3 {
  max-width: 620px;
  font-size: clamp(1.58rem, 1.9vw, 2.45rem);
}

.impact-panel-content p {
  margin-top: 16px;
  color: #ffffff;
  font-size: clamp(0.98rem, 1.04vw, 1.12rem);
  font-weight: 500;
  line-height: 1.58;
}

.impact-cta {
  justify-self: start;
  margin-top: clamp(32px, 5vw, 72px);
  text-transform: uppercase;
}

.impact-list {
  display: grid;
  gap: 16px;
  margin: clamp(28px, 3.6vw, 54px) 0 0;
  padding: 0;
  color: #050505;
  list-style: none;
}

.impact-list li {
  position: relative;
  padding-left: 46px;
  font-size: clamp(1.08rem, 1.34vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
}

.impact-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  background-color: #050505;
  transform: translateY(-50%);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.impact-list .icon-code::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m8 9-4 3 4 3'/%3E%3Cpath d='m16 9 4 3-4 3'/%3E%3Cpath d='m14 4-4 16'/%3E%3C/svg%3E");
}

.impact-list .icon-building::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21h16'/%3E%3Cpath d='M6 21V3h12v18'/%3E%3Cpath d='M9 7h1'/%3E%3Cpath d='M14 7h1'/%3E%3Cpath d='M9 11h1'/%3E%3Cpath d='M14 11h1'/%3E%3Cpath d='M9 15h1'/%3E%3Cpath d='M14 15h1'/%3E%3C/svg%3E");
}

.impact-list .icon-design::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 38 57' fill='black'%3E%3Cpath d='M19 28.5A9.5 9.5 0 1 1 28.5 38H19v-9.5Z'/%3E%3Cpath d='M19 0h9.5a9.5 9.5 0 0 1 0 19H19V0Z'/%3E%3Cpath d='M19 19h9.5a9.5 9.5 0 0 1 0 19H19V19Z'/%3E%3Cpath d='M0 9.5A9.5 9.5 0 0 1 9.5 0H19v19H9.5A9.5 9.5 0 0 1 0 9.5Z'/%3E%3Cpath d='M0 28.5A9.5 9.5 0 0 1 9.5 19H19v19H9.5A9.5 9.5 0 0 1 0 28.5Z'/%3E%3Cpath d='M0 47.5A9.5 9.5 0 0 1 9.5 38H19v9.5A9.5 9.5 0 1 1 0 47.5Z'/%3E%3C/svg%3E");
}

.feature-band {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: #000000;
  color: white;
  padding-top: 0;
  padding-bottom: clamp(88px, 10vw, 150px);
}

.feature-band .eyebrow,
.feature-band p {
  color: #c2d6e5;
}

.feature-copy h2 {
  max-width: 930px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 4vw, 5.2rem);
  line-height: 1.04;
}

.feature-copy p {
  max-width: 1100px;
  font-size: clamp(0.92rem, 0.96vw, 1.05rem);
  line-height: 1.6;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.feature-panel {
  margin-top: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.flow {
  display: grid;
  gap: 14px;
}

.flow b {
  display: block;
  padding: 18px;
  border-radius: var(--radius);
  background: #050505;
  color: var(--ink);
}

.flow i {
  width: 2px;
  height: 34px;
  margin-left: 24px;
  background: var(--accent);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto 44px;
  max-width: 1530px;
}

.section-heading h2 {
  position: relative;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 3vw, 3.85rem);
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 66px;
  height: 4px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--brand-dark);
}

.section-heading .eyebrow {
  color: #ffffff;
  font-size: clamp(1rem, 1.15vw, 1.35rem);
  text-transform: none;
}

.section-heading .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 258px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 4px;
  color: #ffffff;
  background: #ffbf2f;
  font-size: 0.92rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.portfolio {
  padding-top: clamp(8px, 1.2vw, 18px);
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
  background: #000000;
}

.portfolio .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(28px, 5vw, 80px);
  row-gap: 8px;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding: 30px clamp(20px, 5vw, 72px) 0;
}

.portfolio .section-heading .eyebrow {
  grid-column: 1;
  margin-bottom: 0;
  transform: none;
}

.portfolio .section-heading h2 {
  grid-column: 1;
  grid-row: 2;
}

.portfolio .section-heading .text-link {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: center;
  margin-right: clamp(48px, 8vw, 150px);
  margin-top: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.portfolio-grid > a {
  display: block;
  min-width: 0;
  color: inherit;
}

.portfolio-grid article {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 37vw, 540px);
  border: 0;
  border-radius: 0;
  background: #050505;
}

.portfolio-grid h3 {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  margin: 0;
  padding: 0 34px 54px;
  color: #ffffff;
  font-size: clamp(1.55rem, 1.9vw, 2.35rem);
}

.portfolio-visual {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(4, 18, 35, 0.78) 100%),
    url("assets/images/portfolio/financeiro.jpg?v=20260528") center/cover;
  transition: transform 0.35s ease;
}

.portfolio-grid article:hover .portfolio-visual {
  transform: scale(1.04);
}

.portfolio-visual.marketing {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03) 36%, rgba(4, 18, 35, 0.7) 100%),
    url("assets/images/portfolio/marketing-digital.jpg?v=20260528") center/cover;
}

.portfolio-visual.logistics {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03) 36%, rgba(4, 18, 35, 0.76) 100%),
    url("assets/images/portfolio/logistica.jpg?v=20260528") center/cover;
}

.portfolio-visual.real-estate {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 36%, rgba(4, 18, 35, 0.68) 100%),
    url("assets/images/portfolio/vendas.jpg?v=20260528") center/cover;
}

.integrations {
  overflow: hidden;
  text-align: center;
  background: var(--deep);
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(18px, 2.4vw, 34px);
}

.integrations .eyebrow {
  color: #ffffff;
  font-size: clamp(1rem, 1.35vw, 1.75rem);
  text-transform: none;
}

.logo-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  margin-top: 34px;
}

.logo-viewport {
  overflow: hidden;
}

.logo-track {
  --logo-gap: clamp(28px, 3.4vw, 58px);
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  width: max-content;
  will-change: transform;
}

.logo-track.is-marquee {
  animation: logo-marquee 32s linear infinite;
}

.logo-track img {
  flex: 0 0 clamp(130px, 12vw, 190px);
  max-width: clamp(130px, 12vw, 190px);
  max-height: 118px;
  object-fit: contain;
  opacity: 0.95;
}

.logo-viewport:hover .logo-track.is-marquee {
  animation-play-state: paused;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--logo-gap) / 2)));
  }
}

.logo-arrow {
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.logo-arrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
  border-top: 4px solid #d9d9d9;
  border-left: 4px solid #d9d9d9;
}

.logo-prev::before {
  transform: rotate(-45deg);
}

.logo-next::before {
  transform: rotate(135deg);
}

.contact-faq {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(520px, 1.05fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  background: #000000;
  padding-top: clamp(20px, 2.8vw, 42px);
}

.contact-column h2,
.faq-column h2 {
  margin-bottom: 6px;
  font-size: clamp(1.7rem, 2.45vw, 2.85rem);
  line-height: 1.08;
}

.contact-column .eyebrow,
.faq-column .eyebrow {
  color: #ffffff;
  font-size: clamp(0.9rem, 1vw, 1.15rem);
  text-transform: none;
}

.contact-form {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.contact-form label {
  display: grid;
  gap: 12px;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 800;
}

.contact-form label > span {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.contact-form em {
  color: #ff2b2b;
  font-style: normal;
}

.contact-form input {
  width: min(100%, 440px);
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  color: #111111;
  background: #f4f4f4;
  font: inherit;
  font-size: 0.95rem;
}

.contact-form input::placeholder {
  color: #6e747e;
}

.phone-field {
  position: relative;
  display: block;
  width: min(100%, 440px);
  overflow: visible;
}

.phone-field > select,
.phone-field > .phone-country,
.phone-field > .phone-country-value,
.phone-field > .phone-dropdown {
  display: none;
}

.phone-field .iti {
  width: 100%;
  height: 54px;
  overflow: visible;
  border-radius: 6px;
  background: #f4f4f4;
}

.phone-field .iti__flag-container {
  top: 0;
  bottom: 0;
  height: 54px;
  overflow: visible;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px 0 0 6px;
}

.phone-field .iti__selected-flag {
  width: 52px;
  height: 54px;
  min-height: 0;
  overflow: hidden;
  padding: 0 8px 0 10px;
  background: #e9e9e9;
  border-radius: 6px 0 0 6px;
}

.phone-field .iti__arrow {
  margin-left: 5px;
}

.phone-field .iti__country-list {
  z-index: 80;
  width: min(330px, 90vw);
  max-height: 260px;
  color: #1b2430;
  border-color: rgba(0, 0, 0, 0.16);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.phone-field .iti__dropdown-content {
  position: absolute !important;
  top: 56px !important;
  right: auto !important;
  bottom: auto !important;
  left: 0 !important;
  z-index: 90 !important;
}

.phone-field .iti--inline-dropdown .iti__dropdown-content {
  top: 100%;
  left: 0;
  z-index: 90;
}

.phone-field .iti__search-input {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 0;
  border-radius: 0;
  color: #111111;
  background: #ffffff;
  font-size: 0.9rem;
}

.phone-field .iti__country {
  padding: 6px 10px;
  font-size: 0.9rem;
  line-height: 1.15;
}

.phone-field .iti__dial-code {
  color: #8a929d;
}

.phone-field .iti__highlight {
  background-color: #eeeeee;
}

.phone-field input[type="tel"] {
  display: block;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 6px;
  color: #111111;
  background: #f4f4f4;
  font: inherit;
  font-size: 0.95rem;
  padding-left: 66px !important;
}

.phone-field:focus-within {
  outline: 2px solid rgba(244, 196, 48, 0.85);
  outline-offset: 0;
}

.contact-form .button {
  width: min(100%, 440px);
  min-height: 48px;
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  max-width: 880px;
  border: 1px solid rgba(255, 255, 255, 0.78);
}

details {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0;
  background: transparent;
}

details:last-child {
  border-bottom: 0;
}

summary {
  position: relative;
  cursor: pointer;
  padding: 18px 58px 18px 26px;
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--brand-dark);
  font-size: 1.45rem;
  line-height: 1;
  transform: translateY(-50%);
}

details[open] summary {
  color: #ffffff;
}

details[open] summary::after {
  content: "-";
  color: #ffffff;
}

details p {
  margin: 0;
  padding: 0 26px 30px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.7;
}

.site-footer {
  padding: clamp(54px, 7vw, 92px) clamp(24px, 6vw, 96px) clamp(28px, 4vw, 48px);
  background: #000000;
  color: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1500px;
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
}

.copyright {
  margin: 0;
  color: #f5f5f5;
  font-size: clamp(0.88rem, 1.05vw, 1.05rem);
  font-weight: 500;
}

.footer-copy {
  display: grid;
  gap: 6px;
}

.footer-emails {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  color: #b9c8d7;
  font-size: clamp(0.78rem, 0.9vw, 0.94rem);
}

.footer-emails a {
  color: #b9c8d7;
}

.footer-emails a:hover {
  color: var(--brand-dark);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin-left: auto;
}

.footer-links a {
  color: #f5f5f5;
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand-dark);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--brand-dark);
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-social a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.cookie-consent {
  position: fixed;
  right: clamp(16px, 3vw, 42px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 1000;
  width: min(720px, calc(100vw - 32px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-consent__panel {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(244, 196, 48, 0.42);
  border-radius: var(--radius);
  background: rgba(3, 3, 3, 0.96);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.6), 0 0 28px rgba(244, 196, 48, 0.12);
  backdrop-filter: blur(14px);
}

.cookie-consent__content {
  display: grid;
  gap: 8px;
}

.cookie-consent strong {
  color: #ffffff;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.2;
}

.cookie-consent p {
  margin: 0;
  color: #c5d2df;
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-consent a {
  width: fit-content;
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cookie-preferences {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.cookie-preferences[hidden] {
  display: none;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #ffffff;
  font-size: 0.92rem;
}

.cookie-option span {
  display: grid;
  gap: 2px;
}

.cookie-option small {
  color: #9fb1c3;
  font-size: 0.78rem;
  font-weight: 500;
}

.cookie-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-dark);
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-consent button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 0 18px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  color: #ffffff;
  background: #151515;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.cookie-consent button:hover {
  border-color: var(--brand-dark);
  transform: translateY(-1px);
}

.cookie-consent [data-cookie-action="accept"],
.cookie-consent [data-cookie-action="save"] {
  border-color: var(--brand-dark);
  color: #050505;
  background: var(--brand-dark);
}

.portfolio-page-main {
  display: block;
}

.portfolio-detail-hero {
  min-height: clamp(520px, 62vw, 760px);
  display: grid;
  align-items: center;
  padding: clamp(112px, 10vw, 142px) clamp(24px, 6vw, 96px) clamp(48px, 5vw, 78px);
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.6)),
    var(--portfolio-image, url("assets/images/portfolio/financeiro.jpg?v=20260528")) center/cover;
}

.portfolio-detail-hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.15vw, 5.35rem);
  line-height: 1.04;
}

.portfolio-detail-hero p {
  max-width: 760px;
  color: #d7e4ef;
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  line-height: 1.7;
}

.portfolio-detail-section {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 6vw, 96px);
  background: #000000;
}

.portfolio-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
  max-width: 1480px;
  margin: 0 auto;
}

.portfolio-detail-grid h2 {
  max-width: 560px;
  font-size: clamp(2rem, 3vw, 4rem);
}

.portfolio-detail-grid p {
  color: #c5d2df;
  font-size: clamp(1rem, 1.08vw, 1.18rem);
  line-height: 1.75;
}

.portfolio-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1480px;
  margin: clamp(44px, 6vw, 82px) auto 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.18);
}

.portfolio-benefits article {
  min-height: 210px;
  padding: clamp(24px, 3vw, 42px);
  background: #050505;
}

.portfolio-list a {
  display: block;
  min-width: 0;
  color: inherit;
}

.portfolio-list a:hover article,
.portfolio-list a:focus-visible article {
  background: #0b0b0b;
}

.portfolio-benefits h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: clamp(1.1rem, 1.35vw, 1.55rem);
}

.portfolio-benefits p {
  margin: 0;
  color: #b9c8d7;
}

.portfolio-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 62px);
  border-top: 1px solid rgba(244, 196, 48, 0.55);
  border-bottom: 1px solid rgba(244, 196, 48, 0.28);
}

.portfolio-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 2.6vw, 3.4rem);
}

.portfolio-cta p {
  margin: 0;
  color: #c5d2df;
}

.blog-page-main {
  background: #000000;
}

.blog-hero {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 6vw, 96px) clamp(36px, 5vw, 70px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.82)),
    url("assets/images/backgrounds/analytics-dashboard.jpg?v=20260528") center/cover;
}

.blog-hero h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 0.98;
}

.blog-hero p:not(.eyebrow) {
  max-width: 740px;
  color: #d6e4ef;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.65;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(36px, 5vw, 76px) clamp(20px, 6vw, 96px);
}

.featured-post,
.blog-sidebar,
.post-card a {
  color: inherit;
  text-decoration: none;
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: stretch;
}

.featured-post img,
.post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-post img {
  min-height: 430px;
}

.post-category {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-post h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.2vw, 4rem);
  line-height: 1.02;
}

.featured-post p,
.post-card p {
  color: #c5d2df;
  line-height: 1.65;
}

.post-meta {
  display: inline-flex;
  margin-top: 18px;
  color: #8fa1b4;
  font-size: 0.88rem;
  font-weight: 700;
}

.blog-sidebar {
  padding-left: clamp(20px, 3vw, 42px);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.blog-sidebar h2 {
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.blog-sidebar a {
  display: block;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: clamp(1.02rem, 1.3vw, 1.28rem);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.blog-sidebar a span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 clamp(20px, 6vw, 96px) clamp(24px, 4vw, 50px);
}

.blog-categories a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.blog-categories a:hover,
.blog-categories a:focus-visible {
  border-color: var(--brand-dark);
  color: var(--brand-dark);
}

.blog-posts {
  padding: clamp(34px, 5vw, 76px) clamp(20px, 6vw, 96px) clamp(70px, 8vw, 120px);
}

.blog-section-heading {
  margin-bottom: 30px;
}

.blog-section-heading h2 {
  max-width: 820px;
  font-size: clamp(2rem, 3.4vw, 4.25rem);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.post-card {
  background: #000000;
}

.post-card a {
  display: grid;
  min-height: 100%;
  padding-bottom: 26px;
  background: #000000;
}

.post-card img {
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
}

.post-card span,
.post-card h3,
.post-card p {
  margin-right: 24px;
  margin-left: 24px;
}

.post-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 1.7vw, 2rem);
  line-height: 1.15;
}

.legal-page-main {
  padding: clamp(92px, 10vw, 150px) clamp(20px, 6vw, 96px) clamp(60px, 8vw, 110px);
  background: #000000;
}

.legal-content {
  max-width: 980px;
}

.legal-content h1 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.legal-content h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.legal-content p,
.legal-content li {
  color: #d6e4ef;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.75;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--brand-dark);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .split,
  .feature-band,
  .portfolio-detail-grid,
  .portfolio-cta,
  .contact-faq,
  .blog-featured,
  .featured-post,
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .stats,
  .portfolio-grid,
  .portfolio-benefits,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-sidebar {
    padding-left: 0;
    border-left: 0;
  }

  .impact-panels {
    grid-template-columns: 1fr;
  }

  .impact-panel {
    min-height: 560px;
  }
}

@media (max-width: 720px) {
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .cookie-consent__panel {
    padding: 18px;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent button {
    width: 100%;
  }

  .cookie-option {
    align-items: flex-start;
  }

  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .social-links {
    gap: 14px;
    margin-left: auto;
  }

  .social-links a {
    width: 24px;
    height: 24px;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    margin-left: 0;
    margin-right: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #050505;
    box-shadow: var(--shadow);
  }

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

  .site-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .submenu {
    position: static;
    display: grid;
    min-width: 0;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .hero {
    padding-top: 56px;
  }

  .dashboard-preview {
    padding: 12px;
  }

  .stats,
  .portfolio-grid,
  .portfolio-benefits,
  .post-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-detail-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .portfolio-cta {
    justify-items: start;
  }

  .logo-carousel {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 10px;
  }

  .logo-track {
    gap: 34px;
  }

  .logo-track img {
    flex-basis: 160px;
    max-height: 110px;
  }

  .intro {
    margin: 36px 20px;
    padding: 34px 24px;
  }

  .stats article,
  .stats article:nth-child(odd),
  .stats article:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  }

  .stats article:last-child {
    border-bottom: 0;
  }

  .preview-grid .wide {
    grid-column: span 1;
  }

  .section-heading {
    display: block;
  }

  .portfolio .section-heading {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }

  .portfolio .section-heading .eyebrow,
  .portfolio .section-heading h2,
  .portfolio .section-heading .text-link {
    grid-column: 1;
    grid-row: auto;
  }

  .portfolio .section-heading .text-link {
    justify-self: start;
    margin-top: 22px;
  }

  .portfolio-grid article {
    min-height: 360px;
  }

  .blog-hero,
  .blog-featured,
  .blog-posts {
    padding-right: 20px;
    padding-left: 20px;
  }

  .blog-categories {
    padding-right: 20px;
    padding-left: 20px;
  }

  .featured-post img {
    min-height: 260px;
  }

  .impact-heading {
    margin-bottom: 48px;
  }

  .impact-panel {
    min-height: auto;
  }

  .impact-panel-content {
    padding: 48px 24px;
  }

  .impact-cta {
    margin-top: 36px;
  }
}

