:root {
  --red: #e50914;
  --red-dark: #97040b;
  --black: #070707;
  --white: #ffffff;
  --text: #151515;
  --muted: #707070;
  --line: #ececec;
  --soft: #f7f7f7;
  --green: #00ff88;
  --yellow: #ffd60a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(18px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--black);
}

.logo::before {
  content: "GD";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 38px;
  margin-right: 8px;
  background: linear-gradient(115deg, #070707 0%, #e50914 28%, #ffffff 45%, #7d050c 58%, #050505 78%, #ff2530 100%);
  background-size: 240% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: var(--red);
  -webkit-text-fill-color: transparent;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.38), 0 12px 22px rgba(229, 9, 20, 0.28);
  transform: skew(-8deg);
  animation: logoMetal 5.6s linear infinite;
}

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

@keyframes logoMetal {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 240% 50%;
  }
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  color: #2e2e2e;
  font-weight: 700;
  font-size: 0.95rem;
}

.menu a {
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 180ms ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
}

.menu-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 7vw, 98px) 0 clamp(58px, 6vw, 82px);
  background: #f5f5f5;
  color: var(--black);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=2400&q=88") center right / cover;
  opacity: 0.62;
  transform: scale(1.015);
}

.hero::after {
  background:
    radial-gradient(circle at 82% 20%, rgba(229, 9, 20, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 42%, rgba(255, 255, 255, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.12) 58%, rgba(255, 255, 255, 0.86) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 40px));
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(500px, 0.95fr) minmax(520px, 1.05fr);
  gap: clamp(34px, 4.6vw, 64px);
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(229, 9, 20, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--red);
  box-shadow: 0 14px 30px rgba(229, 9, 20, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2.75rem, 3.6vw, 4rem);
  line-height: 1.01;
}

h1 span {
  display: block;
  color: #ff303a;
}

h1 .h1-main {
  color: var(--black);
}

.hero p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(7, 7, 7, 0.72);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--red);
  border-radius: 8px;
  background: linear-gradient(135deg, #e50914 0%, #b9040d 46%, #ff2732 100%);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(229, 9, 20, 0.22);
  transition: box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -55% -85%;
  background: linear-gradient(
    112deg,
    transparent 34%,
    rgba(255, 255, 255, 0.16) 43%,
    rgba(255, 255, 255, 0.88) 50%,
    rgba(255, 255, 255, 0.2) 57%,
    transparent 68%
  );
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateX(-62%) rotate(8deg);
  transition: transform 680ms ease;
}

.btn:hover {
  background: linear-gradient(135deg, #ff1824 0%, #b9040d 48%, #ff5159 100%);
  border-color: #ff303a;
  box-shadow: 0 20px 46px rgba(229, 9, 20, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.btn:hover::before {
  transform: translateX(62%) rotate(8deg);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.56);
  color: var(--black);
  border-color: rgba(7, 7, 7, 0.18);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: linear-gradient(135deg, #161616, #050505 54%, #2f2f2f);
  color: var(--white);
  border-color: var(--black);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.dashboard {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 660px;
  min-height: 492px;
  padding: clamp(16px, 2.2vw, 24px);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(7, 7, 7, 0.98), rgba(24, 24, 24, 0.94));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.32);
}

.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 104px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.floating-card h4 {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.15;
}

.floating-card strong {
  color: var(--red);
  font-size: 1.05rem;
  line-height: 1;
}

.card-1 {
  top: -14px;
  right: 32px;
}

.card-2 {
  left: 32px;
  bottom: -14px;
}

@media (min-width: 821px) {
  .card-1 {
    animation: floatCardOne 4.8s ease-in-out infinite;
  }

  .card-2 {
    animation: floatCardTwo 5.4s ease-in-out infinite;
  }
}

.market-chart {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 442px;
  height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 214, 10, 0.22), transparent 28%),
    radial-gradient(circle at 78% 38%, rgba(0, 255, 136, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(4, 12, 9, 0.96));
  box-shadow: inset 0 0 42px rgba(0, 255, 136, 0.08);
}

.market-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 25%, 16.66% 100%;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 86%, transparent);
  pointer-events: none;
}

.market-chart::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(110deg, transparent 40%, rgba(255, 255, 255, 0.13), transparent 58%);
  animation: cinemaSweep 4.6s linear infinite;
  pointer-events: none;
}

.market-header,
.market-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.market-header span,
.market-footer span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
}

.market-header strong {
  color: var(--yellow);
  font-size: 1.75rem;
  text-shadow: 0 0 18px rgba(255, 214, 10, 0.36);
}

.market-chart canvas {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 292px;
  margin: 8px 0 6px;
}

@keyframes cinemaSweep {
  from {
    transform: translateX(-28%) rotate(8deg);
  }

  to {
    transform: translateX(28%) rotate(8deg);
  }
}

@keyframes floatCardOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 10px, 0);
  }
}

@keyframes floatCardTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

.stats,
.services,
.process,
.cases,
.cta {
  padding: clamp(72px, 9vw, 118px) 0;
}

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

.clients-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(34px, 5vw, 58px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.08), transparent 34%),
    var(--white);
  color: var(--black);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

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

.clients-heading span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.clients-heading strong {
  color: var(--black);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1;
}

.clients-marquee {
  overflow: hidden;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), transparent 12%, transparent 88%, rgba(255, 255, 255, 0.95)),
    #f3f3f3;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.clients-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 16px;
  animation: clientsMarquee 38s linear infinite;
  will-change: transform;
}

.client-logo-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  min-width: 210px;
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--black);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.client-logo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(229, 9, 20, 0.08) 46%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.client-logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 9, 20, 0.36);
  background: var(--white);
  box-shadow: 0 22px 46px rgba(229, 9, 20, 0.16);
}

.client-logo-card:hover::after {
  transform: translateX(120%);
}

.logo-mark {
  grid-row: 1 / 3;
  position: relative;
  z-index: 1;
  display: inline-grid;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.client-logo-card strong {
  position: relative;
  z-index: 1;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.05;
  white-space: nowrap;
}

.client-logo-card small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

@keyframes clientsMarquee {
  from {
    transform: translateX(0);
  }

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.stat {
  min-height: 170px;
  padding: 28px;
  background: var(--black);
}

.stat h2 {
  margin: 0;
  color: var(--red);
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1;
}

.stat p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  line-height: 1;
}

.section-title p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.service-card,
.step,
.case-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card,
.step {
  min-height: 250px;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.step:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 9, 20, 0.24);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.08);
}

.icon,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border-radius: 8px;
  background: rgba(229, 9, 20, 0.09);
  color: var(--red);
  font-weight: 900;
}

.service-card h3,
.step h3,
.case-card h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 1.25rem;
}

.service-card p,
.step p,
.case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.process {
  background: var(--soft);
}

.cases-grid {
  grid-template-columns: repeat(3, 1fr);
}

.case-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.case-content {
  padding: 24px;
}

.case-tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.result {
  margin-top: 18px;
  color: var(--black);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
}

.cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 86px) clamp(22px, 6vw, 74px);
  border: 1px solid rgba(229, 9, 20, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.16), transparent 34%),
    linear-gradient(180deg, #151515, #050505);
  color: var(--white);
  text-align: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.cta {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.38), rgba(229, 9, 20, 0.08) 46%, transparent 68%);
  filter: blur(2px);
  animation: ctaSignal 5.8s ease-in-out infinite;
  pointer-events: none;
}

.cta-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ff4b54;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: ctaKickerPulse 2.4s ease-in-out infinite;
}

.cta-box h2 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  line-height: 1;
}

.cta-box p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
  line-height: 1.7;
}

.cta-benefits {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cta-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
}

.cta-box .btn {
  position: relative;
  z-index: 1;
  min-width: 240px;
  animation: ctaButtonPulse 2.8s ease-in-out infinite;
}

@keyframes ctaSignal {
  0%,
  100% {
    transform: translate(-220px, -70px) scale(0.72);
    opacity: 0.34;
  }

  50% {
    transform: translate(230px, 64px) scale(1.05);
    opacity: 0.78;
  }
}

@keyframes ctaKickerPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(229, 9, 20, 0);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(229, 9, 20, 0.13);
  }
}

@keyframes ctaButtonPulse {
  0%,
  100% {
    box-shadow: 0 18px 36px rgba(229, 9, 20, 0.22);
  }

  50% {
    box-shadow: 0 18px 48px rgba(229, 9, 20, 0.42), 0 0 0 7px rgba(229, 9, 20, 0.1);
  }
}

footer {
  padding: 72px 0 28px;
  background: #050505;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr 0.8fr;
  gap: 34px;
}

footer .logo {
  color: var(--white);
}

.footer-about {
  max-width: 320px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

footer h4 {
  margin: 0 0 18px;
}

footer a,
footer p {
  display: block;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

footer a:hover {
  color: var(--white);
}

.copyright {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.46);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.34);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

@media (max-width: 1160px) {
  .hero::before {
    background-position: center;
    opacity: 0.42;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 55%, rgba(255, 255, 255, 0.94) 100%);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy,
  .hero p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .dashboard {
    justify-self: center;
    max-width: 780px;
  }
}

@media (max-width: 980px) {
  .stats-grid,
  .services-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-box {
    display: grid;
  }
}

@media (max-width: 820px) {
  .container,
  .hero .container {
    width: min(100% - 32px, 1180px);
  }

  nav {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 20px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    width: 100%;
    padding: 14px 0;
    color: var(--black);
    border-top: 1px solid var(--line);
  }

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

  .menu-cta {
    margin-top: 10px;
    padding: 13px 16px;
    background: var(--red);
    color: var(--white);
    border-top: 0;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: clamp(2.15rem, 8vw, 2.8rem);
    line-height: 1;
  }

  .hero-badge {
    max-width: 100%;
    justify-content: center;
    font-size: 0.72rem;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.58;
    margin-top: 18px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }

  .btn {
    min-height: 48px;
    padding: 0 14px;
    text-align: center;
  }

  .dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    min-height: auto;
    padding: 12px;
  }

  .market-chart {
    grid-column: 1 / -1;
    min-height: 318px;
    padding: 14px;
  }

  .market-chart canvas {
    height: 206px;
  }

  .market-header strong {
    font-size: 1.35rem;
  }

  .market-footer span {
    font-size: 0.68rem;
  }

  .floating-card {
    position: static;
    display: block;
    min-width: 0;
    padding: 14px;
    margin: 0;
  }

  .floating-card strong {
    font-size: 1.28rem;
  }

  .clients-heading {
    display: grid;
    align-items: start;
  }

  .clients-track {
    animation-duration: 32s;
    padding: 12px;
  }

  .client-logo-card {
    min-width: 176px;
    min-height: 74px;
    padding: 14px;
    grid-template-columns: 38px 1fr;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    font-size: 0.82rem;
  }

  .client-logo-card strong {
    font-size: 0.92rem;
  }

  .client-logo-card small {
    font-size: 0.68rem;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 29px;
    height: 29px;
  }

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

  .stats-grid {
    gap: 12px;
    background: transparent;
  }

  .stat {
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
  }

  .stat p {
    color: var(--muted);
  }

  .stats-grid,
  .services-grid,
  .process-grid,
  .cases-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 1.05rem;
  }

  .logo::before {
    width: 42px;
    height: 32px;
    margin-right: 6px;
    font-size: 1.28rem;
  }

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

  .btn {
    width: 100%;
  }

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

  .market-chart {
    min-height: 300px;
  }

  .market-chart canvas {
    height: 190px;
  }

  .floating-card h4 {
    font-size: 0.78rem;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
