:root {
  --navy-950: #081a36;
  --navy-900: #0d2b55;
  --navy-800: #143a70;
  --text: #172840;
  --muted: #5f708e;
  --accent: #e4552e;
  --accent-dark: #c73f1b;
  --accent-soft: #fff1eb;
  --surface: #f4f7fc;
  --surface-strong: #eaf0fa;
  --white: #ffffff;
  --line: #d7e1f0;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 10px 24px rgba(8, 34, 73, 0.08);
  --shadow-md: 0 16px 38px rgba(8, 34, 73, 0.12);
  --container: min(1140px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(1200px 540px at 8% -5%, #dde9fb 0%, transparent 56%),
    radial-gradient(900px 460px at 98% 10%, #eef4ff 0%, transparent 60%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 320px);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

.section {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.section-light {
  background: linear-gradient(180deg, #f7f9fd, #f4f7fc);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent);
}

.section-heading {
  margin-bottom: 1.6rem;
  max-width: 760px;
}

.section-heading h2 {
  margin: 0;
  line-height: 1.15;
  font-size: clamp(1.72rem, 3.2vw, 2.45rem);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--navy-950);
  color: var(--white);
  padding: 0.64rem 0.95rem;
  border-radius: 0 0 10px 10px;
}

.skip-link:focus {
  left: 1rem;
}

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

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

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 20px rgba(8, 34, 73, 0.08);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--navy-950);
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--accent), #f67e4f);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  color: var(--navy-800);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
  background: var(--accent-soft);
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 0.62rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy-950);
  border-radius: 99px;
  margin-bottom: 0.26rem;
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.74rem 1.24rem;
  font-weight: 700;
  font-size: 0.93rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(145deg, var(--accent), #f67a49);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(228, 85, 46, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(145deg, var(--accent-dark), #e85d2d);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy-950);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #bfccdf;
  box-shadow: var(--shadow-sm);
}

.btn-light {
  background: var(--white);
  color: var(--navy-900);
}

.hero {
  padding-top: clamp(3.3rem, 6vw, 5.1rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.4rem, 3.2vw, 2.7rem);
  align-items: center;
}

.hero h1 {
  margin: 0;
  max-width: 17ch;
  line-height: 1.08;
  color: var(--navy-950);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
}

.hero-subtitle {
  margin: 1rem 0 0;
  max-width: 60ch;
  color: #3c4e6d;
}

.hero-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.35rem;
}

.hero-metrics {
  margin: 1.45rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.hero-metrics li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 20px rgba(8, 34, 73, 0.05);
  padding: 0.78rem 0.85rem;
}

.hero-metrics strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.04rem;
  line-height: 1.2;
}

.hero-metrics span {
  display: block;
  margin-top: 0.16rem;
  color: var(--muted);
  font-size: 0.83rem;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  padding: clamp(0.95rem, 2.2vw, 1.2rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.86), rgba(236, 243, 255, 0.78));
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 58, 112, 0.22), rgba(20, 58, 112, 0));
  pointer-events: none;
}

.device {
  margin: 0;
  position: relative;
  padding: 0.38rem;
  background: #0f2347;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 36px rgba(8, 34, 73, 0.24);
}

.device-screen {
  overflow: hidden;
  border-radius: 12px;
  background: #e8effd;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.device figcaption {
  position: absolute;
  right: 0.5rem;
  bottom: 0.42rem;
  background: rgba(8, 26, 54, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.14rem 0.42rem;
}

.device-laptop {
  width: clamp(330px, 33vw, 460px);
  border-radius: 20px;
}

.device-laptop .device-screen {
  aspect-ratio: 16 / 10;
}

.device-stack {
  display: grid;
  align-content: end;
  gap: 0.78rem;
}

.device-tablet {
  width: clamp(128px, 11vw, 170px);
  border-radius: 16px;
}

.device-tablet .device-screen {
  aspect-ratio: 3 / 4;
}

.device-phone {
  width: clamp(108px, 9.5vw, 140px);
  border-radius: 20px;
}

.device-phone .device-screen {
  aspect-ratio: 9 / 16;
}

.hero-phone {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 3;
  width: clamp(102px, 9.5vw, 136px);
}

.benefits {
  background: linear-gradient(140deg, var(--navy-950), #11345f);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1.15rem 0;
}

.benefits-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  text-align: center;
  font-size: 0.93rem;
  font-weight: 600;
}

.client-slider {
  padding-top: clamp(2.4rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.6rem, 4.5vw, 3.8rem);
  background: linear-gradient(180deg, #f9fbff 0%, #f4f8ff 100%);
  border-bottom: 1px solid var(--line);
}

.client-slider .section-heading {
  margin-bottom: 1rem;
}

.client-marquee {
  display: flex;
  gap: 1.1rem;
  overflow: hidden;
  padding: 0.45rem 4vw 0.55rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-track {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.1rem;
  min-width: max-content;
  flex-shrink: 0;
  animation: clients-scroll 120s linear infinite;
}

.client-track li {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 6px 16px rgba(8, 34, 73, 0.06);
  border-radius: 16px;
  padding: 0.58rem;
  color: var(--navy-900);
  width: clamp(168px, 16vw, 210px);
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.72rem;
}

.client-link {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.72rem;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.client-link:focus-visible {
  outline: 2px solid #6ea0eb;
  outline-offset: 3px;
  border-radius: 10px;
}

.client-track img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.client-track span {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  padding-inline: 0.18rem;
  min-height: 2.8em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.client-marquee:hover .client-track,
.client-marquee:focus-within .client-track {
  animation-play-state: paused;
}

@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1.1rem));
  }
}

@keyframes bubble-pulse {
  0%,
  100% {
    box-shadow: 0 14px 28px rgba(15, 32, 53, 0.28);
  }
  50% {
    box-shadow: 0 14px 28px rgba(15, 32, 53, 0.28), 0 0 0 10px rgba(37, 211, 102, 0.15);
  }
}

.cards {
  display: grid;
  gap: 0.95rem;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 8px 24px rgba(8, 34, 73, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-2px);
  border-color: #c3d0e5;
  box-shadow: 0 12px 30px rgba(8, 34, 73, 0.1);
}

.card h3 {
  margin: 0 0 0.34rem;
  font-size: 1.04rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: start;
}

.list-check {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.list-check li {
  position: relative;
  padding-left: 1.25rem;
  color: #344867;
}

.list-check li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 99px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.58rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.steps li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(8, 34, 73, 0.05);
}

.steps h3 {
  margin: 0 0 0.22rem;
  font-size: 1rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.portfolio-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(8, 34, 73, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-card:hover,
.portfolio-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(8, 34, 73, 0.11);
}

.portfolio-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.portfolio-card div {
  padding: 1rem;
}

.portfolio-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.04rem;
}

.portfolio-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.testimonials {
  position: relative;
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: 0 10px 24px rgba(8, 34, 73, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.74rem;
  min-height: 100%;
}

.testimonial-client-image {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(8, 34, 73, 0.1);
}

.stars {
  margin: 0;
  letter-spacing: 0.15em;
  color: #f0a800;
  font-size: 0.88rem;
}

.testimonial-key {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #edf3ff;
  color: var(--navy-900);
  border: 1px solid #cfdef4;
  padding: 0.28rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  margin: 0;
  color: #2f4260;
  font-size: 0.96rem;
  line-height: 1.65;
}

.testimonial-placeholder {
  border: 1px dashed #bdd0ee;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.85rem;
  color: #4a607f;
}

.testimonial-author {
  margin: auto 0 0;
  display: grid;
  gap: 0.1rem;
}

.testimonial-author strong {
  font-size: 0.95rem;
  color: var(--navy-900);
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.84rem;
}

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

.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.08rem;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 34, 73, 0.04);
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.pricing-card ul {
  margin: 0.85rem 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.44rem;
}

.pricing-card li {
  color: #344867;
  font-size: 0.94rem;
  padding-left: 1rem;
  position: relative;
}

.pricing-card li::before {
  content: "";
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 99px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.56rem;
}

.pricing-card .btn {
  margin-top: auto;
}

.featured {
  border-color: rgba(228, 85, 46, 0.45);
  box-shadow: 0 16px 30px rgba(228, 85, 46, 0.2);
  position: relative;
}

.badge {
  margin: 0 0 0.45rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-cta {
  background: linear-gradient(145deg, #0a2c5a, #144184);
}

.cta-box {
  max-width: 870px;
  text-align: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.cta-box h2 {
  margin: 0;
  line-height: 1.17;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
}

.cta-box p {
  margin: 0.86rem auto 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 66ch;
}

.cta-box a[href^="mailto"] {
  text-decoration: underline;
}

.cta-box .btn {
  margin-top: 1.25rem;
}

.faq-wrap {
  max-width: 880px;
}

.faq-list {
  display: grid;
  gap: 0.68rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1rem;
  font-weight: 700;
  color: var(--navy-900);
  position: relative;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.18rem;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 1rem 0.95rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.9);
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.15rem;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 0.56rem;
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffd6ca;
}

.footer-bottom {
  margin-top: 1.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.95rem 0 1.35rem;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}

.whatsapp-bubble {
  position: fixed;
  right: clamp(0.95rem, 2.8vw, 1.45rem);
  bottom: clamp(0.95rem, 2.8vw, 1.45rem);
  width: 3.55rem;
  height: 3.55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(150deg, #25d366, #1db954);
  box-shadow: 0 14px 28px rgba(15, 32, 53, 0.28);
  z-index: 70;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: bubble-pulse 2.4s ease-in-out infinite;
}

.whatsapp-bubble:hover,
.whatsapp-bubble:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 34px rgba(15, 32, 53, 0.34);
}

.whatsapp-bubble:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.25);
  outline-offset: 2px;
}

.whatsapp-bubble svg {
  width: 1.68rem;
  height: 1.68rem;
  fill: currentColor;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 760px;
  }

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

  .pricing-grid .pricing-card:last-child {
    grid-column: span 2;
  }

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

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: rgba(255, 255, 255, 0.99);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .site-nav.is-open {
    max-height: 380px;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.9rem 4vw;
    width: 100%;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.56rem 0;
    border-radius: 0;
  }

  .header-cta {
    display: none;
  }

  .split-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    justify-items: center;
  }

  .device-laptop {
    width: min(100%, 560px);
  }

  .device-stack {
    width: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: end;
  }

  .device-tablet {
    width: min(100%, 190px);
  }

  .hero-phone {
    position: static;
    width: min(100%, 190px);
    justify-self: start;
  }

  .client-marquee {
    padding-inline: 4vw;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .client-track {
    animation-duration: 100s;
  }
}

@media (max-width: 760px) {
  .benefits-grid,
  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .footer-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .pricing-grid .pricing-card:last-child {
    grid-column: auto;
  }

  .section {
    padding: 3rem 0;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-note {
    font-size: 0.92rem;
  }

  .device-stack {
    grid-template-columns: 1fr;
    gap: 0.68rem;
  }

  .device-tablet {
    width: min(100%, 150px);
  }

  .hero-phone {
    width: min(100%, 150px);
  }

  .client-slider .section-heading {
    margin-bottom: 0.85rem;
  }

  .client-marquee {
    padding-inline: 0.8rem;
  }

  .client-track {
    gap: 0.8rem;
    animation-duration: 85s;
  }

  .client-track li {
    width: 150px;
    padding: 0.5rem;
  }

  .client-track span {
    font-size: 0.82rem;
    min-height: 2.65em;
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: 72px;
  }

  .site-nav {
    top: 72px;
  }

  .container {
    width: min(1140px, 94vw);
  }

  .card,
  .pricing-card,
  .testimonial-card {
    padding: 1rem;
  }

  .cta-box {
    padding: 1.3rem 1.05rem;
  }

  .client-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .client-track {
    animation-duration: 72s;
  }

  .whatsapp-bubble {
    width: 3.3rem;
    height: 3.3rem;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .client-track {
    animation: none;
  }
}
