:root {
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #dfe5ee;
  --paper: #fbfcff;
  --soft: #f0f5ff;
  --teal: #075bd8;
  --teal-dark: #040815;
  --accent-violet: #b953ff;
  --accent-blue: #0a55d8;
  --violet: #8e44ff;
  --blue: #064ec4;
  --aqua: #1aa5ff;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(5, 11, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--white);
  padding: 0.75rem 1rem;
  border: 2px solid var(--teal);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 253, 252, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.45rem 1rem;
  color: var(--white);
  background: var(--teal-dark);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.top-strip a {
  text-decoration: none;
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 260px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  text-decoration: none;
  padding: 0.7rem 0.8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-links a:hover {
  background: var(--soft);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.page-hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.page-hero img,
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero img {
  object-fit: cover;
  object-position: center;
}

.page-hero .hero-content {
  padding: 4.5rem 0;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.page-hero .hero-overlay {
  background: linear-gradient(90deg, rgba(5, 24, 28, 0.92) 0%, rgba(5, 24, 28, 0.76) 44%, rgba(5, 24, 28, 0.24) 78%);
}

.hero-rental img,
.hero-screen img,
.hero-setup img {
  object-position: 62% center;
}

.hero-lamp img,
.hero-dmd img,
.hero-power img {
  object-position: 46% center;
}

.hero-maintenance img {
  object-position: 62% center;
}

.hero-locations img,
.hero-local img {
  object-position: 70% center;
}

.hero-contact img,
.hero-faq img {
  object-position: 68% center;
}

.hero-guide img,
.hero-brands img,
.hero-blog img {
  object-position: 62% center;
}

.hero-issues img {
  object-position: 58% center;
}

.hero-rental .hero-overlay,
.hero-screen .hero-overlay,
.hero-setup .hero-overlay {
  background: linear-gradient(90deg, rgba(4, 32, 76, 0.92) 0%, rgba(4, 65, 105, 0.76) 45%, rgba(4, 65, 105, 0.2) 78%);
}

.hero-lamp .hero-overlay,
.hero-dmd .hero-overlay,
.hero-power .hero-overlay {
  background: linear-gradient(90deg, rgba(8, 20, 49, 0.92) 0%, rgba(12, 58, 96, 0.75) 46%, rgba(255, 138, 33, 0.18) 80%);
}

.hero-locations .hero-overlay,
.hero-local .hero-overlay,
.hero-contact .hero-overlay,
.hero-guide .hero-overlay,
.hero-faq .hero-overlay,
.hero-brands .hero-overlay {
  background: linear-gradient(90deg, rgba(6, 43, 99, 0.93) 0%, rgba(0, 78, 118, 0.72) 47%, rgba(0, 143, 200, 0.18) 80%);
}

.hero-issues .hero-overlay {
  background: linear-gradient(90deg, rgba(4, 10, 28, 0.94) 0%, rgba(7, 37, 89, 0.78) 42%, rgba(8, 38, 88, 0.18) 78%);
}

@media (min-width: 921px) {
  .hero-contact,
  .hero-faq {
    min-height: clamp(560px, 42vw, 680px);
  }

  .hero-contact img,
  .hero-faq img {
    object-position: 68% 48%;
  }
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(5, 24, 28, 0.9) 0%, rgba(5, 24, 28, 0.78) 36%, rgba(5, 24, 28, 0.22) 72%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  color: var(--white);
  padding: 4rem 0 6rem;
}

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

.hero h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(2.55rem, 7vw, 5.6rem);
  line-height: 0.97;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 1.25rem 0 0;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--accent-violet);
  color: #1d1304;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.btn.ghost {
  color: var(--teal-dark);
  border-color: var(--line);
  background: var(--white);
}

.btn.full {
  width: 100%;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  padding: 1.35rem;
  background: var(--white);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band span {
  color: var(--muted);
  margin-top: 0.15rem;
  font-size: 0.94rem;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.section.shaded {
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100% - 1180px) / 2));
  padding-right: max(1rem, calc((100% - 1180px) / 2));
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 800px;
  margin-bottom: 2rem;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section h3 {
  margin: 0 0 0.55rem;
  line-height: 1.2;
}

.two-col,
.split-list,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  gap: 2rem;
  align-items: start;
}

.contact-card,
.map-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.82rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.form-actions .btn {
  flex: 1 1 190px;
}

.form-error {
  color: #b42318;
  font-weight: 800;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.contact-extra {
  grid-column: 1 / -1;
}

.address-block {
  line-height: 1.75;
}

.service-grid,
.issue-layout,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-grid article,
.issue-layout article,
.audience-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
}

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

.content-page {
  max-width: 930px;
}

.content-page p,
.content-page li {
  font-size: 1.03rem;
}

.content-page h2 {
  margin-top: 2.4rem;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.guide-grid,
.risk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.guide-grid article,
.risk-grid article,
.screenshot-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
}

.screenshot-panel img {
  border-radius: 8px;
  border: 1px solid var(--line);
}

.page-cta {
  margin: 2rem 0;
  padding: 1.25rem;
  background: var(--teal-dark);
  color: var(--white);
  border-radius: 8px;
}

.page-cta .btn {
  margin-top: 0.5rem;
}

.landing-grid a {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 800;
}

.split-list {
  align-items: center;
}

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

.check-list li {
  padding: 0.85rem 1rem;
  background: var(--white);
  border-left: 5px solid var(--teal);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(13, 92, 99, 0.08);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill-grid span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.location-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.location-columns div {
  background: var(--white);
  border-top: 5px solid var(--accent-blue);
  border-radius: 8px;
  padding: 1.25rem;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.75rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}

.social-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  font-weight: 700;
  background: var(--white);
  color: var(--ink);
}

.social-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.social-link.meta .social-icon {
  background: #1877f2;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
}

.social-link.instagram .social-icon {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  font-size: 1.05rem;
}

.social-link.youtube .social-icon {
  background: #ff0000;
  font-size: 0.75rem;
}

.social-link.justdial .social-icon {
  background: #f58220;
  color: #072b63;
  font-size: 0.62rem;
}

.social-link.sulekha .social-icon {
  background: #3c9f39;
  font-size: 0.85rem;
}

.footer {
  padding: 2rem 1rem 5rem;
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.footer p {
  max-width: 920px;
  margin: 0.35rem auto;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.sticky-cta a {
  min-width: 84px;
  padding: 0.75rem 1rem;
  text-align: center;
  color: var(--white);
  background: var(--teal);
  text-decoration: none;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.sticky-cta a:last-child {
  border-right: 0;
  background: var(--accent-violet);
  color: #1d1304;
}

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

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.75rem;
  }

  .nav-links.open {
    display: flex;
  }

  .trust-band,
  .service-grid,
  .issue-layout,
  .audience-grid,
  .landing-grid,
  .guide-grid,
  .risk-grid,
  .location-columns,
  .two-col,
  .split-list,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background: rgba(5, 24, 28, 0.76);
  }
}

@media (max-width: 560px) {
  .top-strip {
    justify-content: flex-start;
    gap: 0.7rem;
    font-size: 0.82rem;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 3rem 0 4rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section.shaded {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .sticky-cta {
    width: calc(100% - 1rem);
  }

  .sticky-cta a {
    flex: 1;
    min-width: 0;
  }
}

/* Professional logo-led theme refresh */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(5, 11, 28, 0.08);
}

.top-strip {
  background: linear-gradient(90deg, #040815, #073ea0 48%, #8e44ff);
  font-weight: 700;
}

.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 3px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(5, 11, 28, 0.18);
}

.brand strong {
  color: #071126;
  font-size: 1rem;
}

.brand small {
  color: #4b5565;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #eef4ff;
  color: #064ec4;
}

.hero-slider {
  min-height: 720px;
  background: #040815;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 850ms ease, transform 5000ms ease;
}

.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider .slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slider .hero-overlay {
  background: linear-gradient(90deg, rgba(4, 8, 21, 0.94) 0%, rgba(6, 31, 92, 0.84) 42%, rgba(142, 68, 255, 0.28) 74%, rgba(4, 8, 21, 0.18) 100%);
}

.hero-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  padding: 0.45rem 0.8rem 0.45rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-weight: 800;
}

.hero-kicker img {
  position: static;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.hero h1 {
  max-width: 850px;
  text-wrap: balance;
}

.hero-eyebrow,
.hero-title,
.hero-copy {
  transition: opacity 180ms ease;
}

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

.eyebrow {
  color: #c88cff;
}

.btn {
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(5, 11, 28, 0.16);
}

.btn.primary {
  background: linear-gradient(135deg, #ffffff 0%, #dce9ff 100%);
  color: #071126;
}

.btn.whatsapp {
  background: #18b35b;
  color: var(--white);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn.ghost {
  color: #064ec4;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.hero-proof span {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.68rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.hero-proof strong {
  color: var(--white);
  font-size: 1.08rem;
}

.slider-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
}

.slider-dots button {
  width: 46px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--white);
}

.trust-band {
  background: #071126;
}

.trust-band div {
  background: #071126;
  color: var(--white);
}

.trust-band span {
  color: rgba(255, 255, 255, 0.72);
}

.turnaround-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  background: #1a1730;
  color: #ccc;
  border-top: 1px solid #3a3460;
  border-bottom: 1px solid #3a3460;
  font-size: 0.9em;
}

.turnaround-strip span {
  padding: 0;
  text-align: center;
  font-weight: 800;
}

.testimonials-section {
  padding: 40px 20px;
  background: #0f0d1a;
  color: var(--white);
  text-align: center;
}

.testimonials-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 24px auto;
}

.testimonial-card {
  margin: 0;
  padding: 20px;
  background: #1a1730;
  border-left: 4px solid #6c63ff;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.testimonial-card p {
  margin: 0 0 10px;
  font-style: italic;
}

.testimonial-card cite {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85em;
  opacity: 0.75;
}

.review-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9em;
  opacity: 0.8;
}

.review-note a {
  color: var(--white);
  font-weight: 800;
}

.brand-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
}

.brand-badge {
  background: #ffffff;
  border: 1px solid #cfdcf1;
  color: #071126;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 0.92em;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 24px rgba(5, 11, 28, 0.08);
}

.brand-directory {
  justify-content: flex-start;
  margin: 1.5rem 0;
}

.whatsapp-sticky {
  display: none;
}

.section.shaded {
  background: linear-gradient(180deg, #f2f6ff 0%, #ffffff 100%);
}

.service-grid article,
.issue-layout article,
.audience-grid article,
.guide-grid article,
.risk-grid article,
.contact-card,
.map-card,
.landing-grid a,
.location-columns div,
.faq details {
  box-shadow: 0 12px 30px rgba(5, 11, 28, 0.08);
}

.service-grid article,
.issue-layout article,
.audience-grid article,
.guide-grid article,
.risk-grid article {
  border-top: 4px solid #075bd8;
}

.landing-grid a {
  color: #071126;
}

.landing-grid a:hover,
.landing-grid a:focus-visible {
  border-color: #8e44ff;
  color: #064ec4;
  transform: translateY(-2px);
}

.pill-grid span {
  color: #071126;
  border-color: #cfdcf1;
  background: #ffffff;
}

.check-list li {
  border-left-color: #8e44ff;
}

.footer {
  background: linear-gradient(135deg, #040815, #071126 55%, #062763);
}

.sticky-cta a {
  background: #075bd8;
}

.sticky-cta a:last-child {
  background: #8e44ff;
  color: var(--white);
}

.sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

body.show-sticky-cta .sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

@media (max-width: 920px) {
  .hero-slider {
    min-height: 690px;
  }

  .hero-slider .hero-overlay {
    background: rgba(4, 8, 21, 0.82);
  }

  .nav-links {
    background: var(--white);
    border-top: 1px solid var(--line);
  }

  .turnaround-strip,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .turnaround-strip {
    display: grid;
  }
}

@media (max-width: 560px) {
  .hero-slider {
    min-height: 660px;
  }

  .hero-kicker {
    align-items: center;
    padding-right: 0.65rem;
    font-size: 0.82rem;
  }

  .hero-kicker img {
    width: 40px;
    height: 40px;
  }

  .hero-proof span {
    width: 100%;
  }

  .slider-dots {
    bottom: 1.15rem;
  }
}

@media (max-width: 768px) {
  .whatsapp-sticky {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    background: #25d366;
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  body.show-sticky-cta .whatsapp-sticky {
    display: none;
  }
}

@media (min-width: 769px) {
  .whatsapp-sticky {
    display: none;
  }
}
