:root {
  --primary: #2563EB;
  --secondary: #0F172A;
  --accent: #06B6D4;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-500: #64748B;
  --gray-700: #334155;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.14);
  --glass: rgba(255, 255, 255, 0.76);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--secondary);
  background: var(--gray-50);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--secondary);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem clamp(1rem, 3vw, 2rem);
}

.nav {
  width: min(var(--max), 100%);
  margin: 0 auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.9rem 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 200px;
}

.brand-logo {
  width: 220px;
  height: 64px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.25rem);
  color: var(--gray-700);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.78rem 1rem;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--secondary);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 8.5rem clamp(1rem, 4vw, 3rem) 3rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 45%, #ECFEFF 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mesh {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.28;
  animation: floatMesh 11s ease-in-out infinite;
}

.mesh-one {
  right: -8rem;
  top: 6rem;
  background: var(--accent);
}

.mesh-two {
  left: -12rem;
  bottom: 4rem;
  background: var(--primary);
  animation-delay: -5s;
}

.grid-plane {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background-image: linear-gradient(rgba(37, 99, 235, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(700px) rotateX(58deg) translateY(26%);
  transform-origin: bottom;
  opacity: 0.42;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.25rem;
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 2rem;
  color: var(--gray-700);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.92rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.btn-ghost {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1100px;
  isolation: isolate;
}

.hero-3d {
  position: absolute;
  inset: -8% -10%;
  z-index: 1;
  width: 120%;
  height: 116%;
  opacity: 0.98;
  filter: drop-shadow(0 34px 60px rgba(37, 99, 235, 0.18));
  pointer-events: none;
}

.system-panel {
  position: relative;
  z-index: 3;
  width: min(100%, 460px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(239, 246, 255, 0.44));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(1.25);
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(3deg);
  animation: floatPanel3d 7s ease-in-out infinite;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.panel-top strong {
  margin-left: auto;
  color: var(--gray-700);
  font-size: 0.84rem;
}

.panel-body {
  padding: 2rem;
}

.metric-line {
  height: 14px;
  width: 62%;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), rgba(6, 182, 212, 0.2));
}

.metric-line.wide {
  width: 92%;
}

.flow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.flow span {
  flex: 1;
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 0.5rem;
  border-radius: var(--radius);
  background: var(--secondary);
}

.flow i {
  width: 22px;
  height: 2px;
  background: var(--accent);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.mini-grid b {
  min-height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.tech-badge {
  position: absolute;
  z-index: 4;
  min-width: 118px;
  padding: 0.75rem 0.85rem;
  color: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.11);
  backdrop-filter: blur(16px);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  animation: badgeFloat 5.5s ease-in-out infinite;
}

.badge-one {
  top: 15%;
  left: 3%;
}

.badge-two {
  right: 2%;
  top: 24%;
  animation-delay: -1.7s;
}

.badge-three {
  bottom: 15%;
  left: 9%;
  animation-delay: -3.2s;
}

.stats {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(226, 232, 240, 0.84);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.stats div {
  padding: 1.2rem;
  text-align: center;
  border-right: 1px solid rgba(226, 232, 240, 0.9);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  color: var(--secondary);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1;
}

.stats span {
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.section-heading {
  width: min(840px, 100%);
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.section-heading h2,
.contact-panel h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.contact-panel p {
  color: var(--gray-700);
  font-size: 1.04rem;
}

.about-layout,
.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about-story,
.values > div,
.service-card,
.project,
.testimonial-shell,
.faq-list,
.contact-panel {
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(16px);
}

.about-story,
.values > div {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.about-story h3,
.values h3 {
  font-size: 1.35rem;
}

.profile {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.profile-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  font-weight: 900;
}

.profile h4,
.profile p {
  margin-bottom: 0.2rem;
}

.values {
  display: grid;
  gap: 1.25rem;
}

.services {
  background: var(--white);
}

.service-grid,
.portfolio-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 355px;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.project:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.16);
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  color: var(--white);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
}

.service-card h3 {
  min-height: 54px;
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
  line-height: 1.2;
}

.service-card p,
.project p,
.timeline-item p {
  color: var(--gray-700);
}

.service-card ul {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
  color: var(--gray-700);
}

.service-card a {
  margin-top: auto;
  color: var(--primary);
  font-weight: 900;
}

.advantages {
  background: linear-gradient(135deg, var(--secondary), #172554);
  color: var(--white);
}

.advantages .section-kicker,
.advantages .section-heading h2 {
  color: var(--white);
}

.advantage-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.advantage-grid span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.advantage-grid span::before {
  content: "✓";
  margin-right: 0.7rem;
  color: var(--accent);
}

.timeline {
  position: relative;
  width: min(920px, 100%);
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--primary), var(--accent));
}

.timeline-item {
  position: relative;
  width: calc(50% - 2rem);
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.timeline-item:nth-child(odd) {
  margin-right: auto;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 1.5rem;
  width: 16px;
  height: 16px;
  border: 4px solid var(--white);
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.timeline-item:nth-child(odd)::after {
  right: -2.55rem;
}

.timeline-item:nth-child(even)::after {
  left: -2.55rem;
}

.timeline-item span,
.project span {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio {
  background: var(--white);
}

.project {
  min-height: 230px;
  padding: 1.4rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.72));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project h3 {
  margin: 1.3rem 0 0.7rem;
  font-size: 1.35rem;
}

.testimonial-shell {
  width: min(900px, 100%);
  min-height: 260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
}

.testimonial-track {
  position: relative;
  min-height: 190px;
  overflow: hidden;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  text-align: center;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial p {
  color: var(--secondary);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.25;
}

.slider-btn {
  width: 50px;
  height: 50px;
  color: var(--white);
  border: 0;
  border-radius: var(--radius);
  background: var(--secondary);
  font-size: 2rem;
  cursor: pointer;
}

.faq {
  background: var(--white);
}

.faq-list {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 0.5rem;
}

details {
  border-bottom: 1px solid var(--gray-200);
}

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

summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem;
  font-weight: 900;
  cursor: pointer;
}

summary::after {
  content: "+";
  color: var(--primary);
  font-size: 1.5rem;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 1rem 1.2rem;
  color: var(--gray-700);
}

.contact {
  background: linear-gradient(135deg, #EFF6FF, #ECFEFF);
}

.contact-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.4rem, 5vw, 3rem);
}

.contact-details {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.04);
}

.footer {
  padding: 3rem clamp(1rem, 4vw, 3rem) 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  background: var(--secondary);
}

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

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

.footer-logo {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
  font-weight: 900;
}

.footer a {
  display: block;
  margin: 0.5rem 0;
  transition: color 0.2s ease;
}

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

.socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.copyright {
  width: min(var(--max), 100%);
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, #22C55E, #06B6D4);
  box-shadow: 0 18px 34px rgba(34, 197, 94, 0.32);
  font-weight: 900;
  animation: pulse 2.4s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes floatMesh {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-28px, 22px, 0) scale(1.06); }
}

@keyframes floatPanel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes floatPanel3d {
  0%, 100% { transform: rotateY(-8deg) rotateX(3deg) translateY(0); }
  50% { transform: rotateY(-3deg) rotateX(5deg) translateY(-16px); }
}

@keyframes badgeFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotateZ(0deg); }
  50% { transform: translate3d(0, -12px, 0) rotateZ(1.5deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

@media (max-width: 1080px) {
  .hero-inner,
  .about-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .hero-3d {
    inset: -4% -8%;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    padding: 0.7rem;
  }

  .nav {
    min-height: 64px;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 176px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 5.5rem 0.7rem auto;
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.8rem;
  }

  .nav-cta {
    text-align: center;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 7.2rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats,
  .service-grid,
  .portfolio-grid,
  .advantage-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  }

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

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

  .hero-3d {
    inset: -8% -18%;
    width: 136%;
    height: 120%;
    opacity: 0.82;
  }

  .system-panel {
    transform: none;
    animation: floatPanel 6s ease-in-out infinite;
  }

  .tech-badge {
    min-width: 96px;
    padding: 0.6rem 0.65rem;
    font-size: 0.7rem;
  }

  .badge-one {
    top: 4%;
    left: 0;
  }

  .badge-two {
    top: 12%;
    right: 0;
  }

  .badge-three {
    bottom: 4%;
    left: 3%;
  }

  .panel-body {
    padding: 1.2rem;
  }

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

  .flow i {
    width: 2px;
    height: 16px;
    margin: 0 auto;
  }

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


  .timeline::before {
    left: 8px;
  }

  .timeline-item,
  .timeline-item:nth-child(even),
  .timeline-item:nth-child(odd) {
    width: calc(100% - 2rem);
    margin-left: 2rem;
    margin-right: 0;
  }

  .timeline-item:nth-child(even)::after,
  .timeline-item:nth-child(odd)::after {
    left: -2.35rem;
    right: auto;
  }

  .testimonial-shell {
    grid-template-columns: 44px 1fr 44px;
    gap: 0.35rem;
    padding: 0.8rem;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
  }
}

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

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