:root {
  --bg: #05070d;
  --bg-2: #080d17;
  --surface: rgba(13, 22, 38, 0.72);
  --surface-strong: rgba(18, 30, 50, 0.88);
  --text: #f5f8ff;
  --muted: #9aa9bf;
  --muted-2: #74839a;
  --line: rgba(255, 255, 255, 0.11);
  --cyan: #22d3ee;
  --green: #39ff9f;
  --blue: #3182ff;
  --cyan-soft: rgba(34, 211, 238, 0.16);
  --green-soft: rgba(57, 255, 159, 0.13);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  --glow: 0 0 48px rgba(34, 211, 238, 0.2);
  --radius: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(49, 130, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 16%, rgba(57, 255, 159, 0.12), transparent 24rem),
    linear-gradient(180deg, var(--bg), #060914 48%, var(--bg));
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

.section--compact {
  padding: 56px 0;
}

.section__intro {
  max-width: 760px;
  margin-bottom: 32px;
}

.section__intro--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section__intro p,
.hero__lead,
.cta__content p,
.contact__content p,
.price-card p {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 4.7vw, 4rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 6vw, 3.65rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #031018;
  box-shadow: var(--glow);
}

.btn--ghost,
.btn--secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.btn--ghost:hover,
.btn--secondary:hover {
  border-color: rgba(57, 255, 159, 0.45);
  background: rgba(57, 255, 159, 0.1);
}

.btn--full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 13, 0.78);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(34, 211, 238, 0.56);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.18), rgba(57, 255, 159, 0.12));
  color: var(--green);
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.16);
  font-size: 0.86rem;
}

.brand__text {
  font-size: 1.02rem;
}

.site-nav {
  position: fixed;
  inset: 76px 0 auto 0;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 13, 0.98);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 13px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.site-nav .nav-cta {
  margin-top: 6px;
  border: 1px solid rgba(57, 255, 159, 0.36);
  background: rgba(57, 255, 159, 0.1);
  color: var(--text);
  text-align: center;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

.hero {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 76px);
  overflow: hidden;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.62;
}

.hero__grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: 1.08rem;
}

.hero__actions,
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero__visual {
  min-height: 360px;
}

.hero-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(5, 8, 16, 0.76);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 58%;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.03) 30%, rgba(5, 7, 13, 0.42)),
    radial-gradient(circle at 24% 18%, rgba(57, 255, 159, 0.16), transparent 16rem);
  pointer-events: none;
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 58%;
  z-index: 2;
  background:
    linear-gradient(rgba(34, 211, 238, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}

.hero-showcase img {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}

.hero-showcase__content {
  position: relative;
  z-index: 3;
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 12% 0%, rgba(57, 255, 159, 0.1), transparent 15rem),
    rgba(5, 7, 13, 0.5);
}

.hero-showcase__label {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-showcase__content strong {
  display: block;
  max-width: 440px;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.hero-showcase__content p {
  max-width: 460px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.hero-showcase__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hero-showcase__stats span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(57, 255, 159, 0.28);
  border-radius: 999px;
  background: rgba(57, 255, 159, 0.09);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
}

.proof-grid,
.cards-grid,
.portfolio-grid {
  display: grid;
  gap: 18px;
}

.proof-card,
.service-card,
.project-card,
.price-card,
.contact-form,
.cta__box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.proof-card {
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.proof-card:hover,
.service-card:hover,
.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(57, 255, 159, 0.34);
}

.proof-card__number {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
}

.proof-card__media {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: rgba(5, 7, 13, 0.76);
}

.proof-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.04) 25%, rgba(5, 7, 13, 0.88)),
    radial-gradient(circle at 20% 20%, rgba(57, 255, 159, 0.14), transparent 12rem);
}

.proof-card__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.proof-card:hover .proof-card__media img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.proof-card__body {
  padding: 22px 28px 28px;
}

.proof-card h3 {
  margin: 0;
  color: var(--text);
}

.proof-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-card p,
.project-card p,
.product__content p {
  color: var(--muted);
}

.service-card {
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card__media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: rgba(5, 7, 13, 0.76);
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.04) 24%, rgba(5, 7, 13, 0.9)),
    radial-gradient(circle at 22% 22%, rgba(57, 255, 159, 0.15), transparent 13rem);
}

.service-card__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.service-card__body {
  padding: 24px 28px 28px;
}

.card-icon {
  display: grid;
  place-items: center;
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 14px;
  background: rgba(5, 7, 13, 0.68);
  backdrop-filter: blur(12px);
  color: var(--green);
  font-weight: 900;
}

.portfolio {
  background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.04), transparent);
}

.project-card {
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.project-card__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 210px;
  padding: 20px;
  overflow: hidden;
  background: rgba(5, 7, 13, 0.76);
}

.project-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(5, 7, 13, 0.82)),
    radial-gradient(circle at 20% 20%, rgba(57, 255, 159, 0.16), transparent 15rem);
}

.project-card__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.project-card:hover .project-card__media img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.project-card__media span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.58);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
}

.project-card__body {
  padding: 24px;
}

.product__grid,
.contact__grid {
  display: grid;
  gap: 28px;
}

.product__content {
  max-width: 760px;
}

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

.product-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-weight: 700;
}

.product-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 18px rgba(57, 255, 159, 0.34);
}

.price-card {
  align-self: start;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(57, 255, 159, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(13, 22, 38, 0.72);
}

.price-card__label {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 900;
}

.price-card__price {
  display: block;
  margin-bottom: 16px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

.price-card p {
  margin-bottom: 24px;
}

.cta__box {
  display: grid;
  gap: 26px;
  align-items: center;
  padding: 30px;
  border-color: rgba(57, 255, 159, 0.24);
  background:
    radial-gradient(circle at 12% 0%, rgba(57, 255, 159, 0.15), transparent 18rem),
    linear-gradient(135deg, rgba(34, 211, 238, 0.13), rgba(49, 130, 255, 0.09));
}

.cta__content p {
  max-width: 720px;
  margin: 16px 0 0;
}

.contact__content {
  max-width: 620px;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-info a,
.contact-info span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-weight: 800;
}

.contact-info a:hover {
  color: var(--text);
  border-color: rgba(34, 211, 238, 0.35);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

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

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  color: var(--text);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(5, 7, 13, 0.74);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input {
  min-height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 148px;
  padding: 14px 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(57, 255, 159, 0.72);
  background: rgba(5, 7, 13, 0.94);
  box-shadow: 0 0 0 4px rgba(57, 255, 159, 0.1);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #ff8f9c;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--muted);
  background: rgba(5, 7, 13, 0.62);
}

.footer__inner {
  display: grid;
  gap: 22px;
}

.footer-brand {
  margin-bottom: 8px;
  color: var(--text);
}

.footer__inner p {
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-nav a {
  color: var(--muted);
  font-weight: 800;
}

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

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
  background: #2be36f;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42), 0 0 28px rgba(37, 211, 102, 0.38);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.thank-you {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 76px);
  overflow: hidden;
}

.thank-you__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.thank-you__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.thank-you__content h1 {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.thank-you__content p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.04rem;
}

.thank-you__subtitle {
  color: var(--text) !important;
  font-size: 1.18rem !important;
  font-weight: 800;
}

.thank-you__actions {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: 30px;
}

.thank-you__actions span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.thank-you-contact__box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(57, 255, 159, 0.11), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.thank-you-contact__box p {
  color: var(--muted);
}

.thank-you-contact__box {
  padding: 28px;
}

.thank-you-contact__box h2 {
  font-size: clamp(1.65rem, 4vw, 2.3rem);
}

.thank-you-contact__box a {
  color: var(--green);
  font-weight: 900;
}

.store-hero {
  display: grid;
  align-items: center;
  min-height: 56vh;
  overflow: hidden;
}

.store-hero__content {
  max-width: 860px;
}

.store-hero__content p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.store-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.store-card:hover {
  transform: translateY(-5px);
  border-color: rgba(57, 255, 159, 0.34);
}

.store-card__media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: rgba(5, 7, 13, 0.76);
}

.store-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.04) 25%, rgba(5, 7, 13, 0.88)),
    radial-gradient(circle at 20% 20%, rgba(57, 255, 159, 0.14), transparent 12rem);
}

.store-card__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.store-card:hover .store-card__media img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.store-card__media span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.62);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
}

.store-card__body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.store-card__body h3 {
  margin-bottom: 0;
}

.store-card__body p,
.store-card__note {
  color: var(--muted);
}

.store-card__note {
  font-size: 0.9rem;
  font-weight: 700;
}

.store-card__price {
  display: block;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

@keyframes sheen {
  0%,
  60% {
    transform: translateX(-75%);
  }
  100% {
    transform: translateX(95%);
  }
}

@media (min-width: 620px) {
  .hero__actions,
  .cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 760px) {
  .section {
    padding: 98px 0;
  }

  .section--compact {
    padding: 68px 0;
  }

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

  .cards-grid--three,
  .portfolio-grid,
  .store-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product__grid,
  .contact__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: start;
  }

  .footer__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0;
    border-bottom: 0;
    background: transparent;
  }

  .site-nav .nav-cta {
    margin-top: 0;
    margin-left: 8px;
    padding: 13px 16px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
    gap: 52px;
  }

  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta__box {
    grid-template-columns: 1fr auto;
  }

  .store-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

  .section {
    padding: 64px 0;
  }

  .hero-showcase,
  .hero__visual {
    min-height: 340px;
  }

  .price-card__price {
    font-size: 2.45rem;
  }

  .proof-card__media {
    height: 156px;
  }

  .service-card__media,
  .project-card__media,
  .store-card__media {
    height: 180px;
  }

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