*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --slate: #0f172a;
  --slate-mid: #1e293b;
  --blue: #2563eb;
  --blue-soft: rgba(37, 99, 235, 0.1);
  --muted: #64748b;
  --slate-text: #334155;
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-soft: rgba(34, 197, 94, 0.1);
  --surface: #f1f5f9;
  --surface-2: #f8fafc;
  --amber-bg: #fef3c7;
  --amber-border: rgba(245, 158, 11, 0.2);
  --amber-text: #92400e;
  --amber-muted: #a16207;
  --amber-icon: #d97706;
  --red: #ef4444;
  --red-soft: #fef2f2;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Poppins", var(--font-sans);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  color: var(--slate);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
body.menu-open {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
.icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 24px;
  }
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    background 0.3s,
    box-shadow 0.3s,
    backdrop-filter 0.3s;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}
.site-nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--slate);
}
@media (min-width: 1024px) {
  .brand-name {
    font-size: 17px;
  }
}
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-text);
  transition:
    color 0.2s,
    transform 0.2s ease;
}
.nav-links a:hover {
  color: var(--blue);
  transform: translateY(-1px);
}
.nav-links a.active {
  color: var(--blue);
}
.nav-ctas {
  display: none;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1024px) {
  .nav-ctas {
    display: flex;
  }
}
.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-wa:hover {
  background: var(--green-dark);
}
.nav-wa .icon {
  width: 16px;
  height: 16px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--slate);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--slate-mid);
}
.nav-cta .icon {
  width: 16px;
  height: 16px;
}
.nav-menu-btn {
  display: flex;
  padding: 8px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--slate);
}
.nav-menu-btn:hover {
  background: var(--surface);
}
@media (min-width: 1024px) {
  .nav-menu-btn {
    display: none;
  }
}
.nav-menu-btn .icon {
  width: 24px;
  height: 24px;
}
.mobile-nav-panel {
  display: none;
  position: fixed;
  inset: 68px 0 0;
  z-index: 40;
  background: #fff;
  overflow-y: auto;
}
.mobile-nav-panel.is-open {
  display: block;
}
@media (min-width: 1024px) {
  .mobile-nav-panel {
    display: none !important;
  }
}
.mobile-nav-inner {
  padding: 24px 20px;
}
.mobile-nav-inner a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--slate);
  border-radius: 12px;
  margin-bottom: 4px;
}
.mobile-nav-inner a:hover {
  background: var(--surface);
}
.mobile-nav-inner a.active {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}
.mobile-nav-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero {
  padding-top: 68px;
  background: linear-gradient(to bottom, var(--surface), #fff);
}
.hero-inner {
  padding: 40px 0 48px;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-inner {
    padding: 56px 0 64px;
  }
}
@media (min-width: 1024px) {
  .hero-inner {
    padding: 64px 0;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  margin-bottom: 16px;
}
.hero-badge .icon {
  width: 14px;
  height: 14px;
  color: var(--blue);
}
.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--slate);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 38px;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 44px;
  }
}
.hero p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 32rem;
  margin: 0 auto;
}

.contact-section {
  padding-bottom: 48px;
  background: #fff;
}
@media (min-width: 768px) {
  .contact-section {
    padding-bottom: 64px;
  }
}
@media (min-width: 1024px) {
  .contact-section {
    padding-bottom: 80px;
  }
}
.contact-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
.contact-block h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .contact-block h2 {
    font-size: 24px;
  }
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.info-row {
  display: flex;
  gap: 16px;
}
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon.blue {
  background: var(--blue-soft);
  color: var(--blue);
}
.info-icon.green {
  background: var(--green-soft);
  color: var(--green);
}
.info-icon .icon {
  width: 20px;
  height: 20px;
}
.info-row h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 2px;
}
.info-row p,
.info-row a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.info-row a {
  color: var(--blue);
  font-weight: 500;
}
.info-row a.green-link {
  color: var(--green);
}
.info-row a:hover {
  text-decoration: underline;
}
.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .quick-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.qa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.qa-btn .icon {
  width: 16px;
  height: 16px;
}
.qa-dark {
  background: var(--slate);
  color: #fff;
}
.qa-dark:hover {
  background: var(--slate-mid);
}
.qa-outline {
  border: 2px solid var(--slate);
  color: var(--slate);
}
.qa-outline:hover {
  background: var(--surface);
}
.qa-wa {
  background: var(--green);
  color: #fff;
}
.qa-wa:hover {
  background: var(--green-dark);
}
.emergency-note {
  background: var(--amber-bg);
  border: 1px solid var(--amber-border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.emergency-note .icon {
  width: 20px;
  height: 20px;
  color: var(--amber-icon);
  margin-top: 2px;
  flex-shrink: 0;
}
.emergency-note strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber-text);
  margin-bottom: 2px;
}
.emergency-note p {
  font-size: 12px;
  color: var(--amber-muted);
  line-height: 1.5;
}
.map-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.05);
  background: var(--surface);
  min-height: 350px;
  position: relative;
}
@media (min-width: 1024px) {
  .map-card {
    min-height: 450px;
  }
}
.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
  display: block;
}
@media (min-width: 1024px) {
  .map-card img {
    min-height: 450px;
  }
}
.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.map-popup {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  text-align: center;
  max-width: 260px;
}
.map-popup .icon {
  width: 32px;
  height: 32px;
  color: var(--blue);
  margin: 0 auto 8px;
  display: block;
}
.map-popup h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 4px;
}
.map-popup p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}
.map-popup a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
}
.map-popup a .icon {
  width: 14px;
  height: 14px;
}

.timings-section {
  padding: 48px 0;
  background: var(--surface-2);
}
@media (min-width: 768px) {
  .timings-section {
    padding: 64px 0;
  }
}
@media (min-width: 1024px) {
  .timings-section {
    padding: 80px 0;
  }
}
.timings-head {
  text-align: center;
  margin-bottom: 40px;
}
.timings-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.timings-head h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--slate);
}
@media (min-width: 768px) {
  .timings-head h2 {
    font-size: 32px;
  }
}
.timings-stack {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.timing-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.timing-card-head {
  background: var(--slate);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.timing-card-head .icon {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
}
.timing-card-head h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.timing-card-head .sub {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
}
.timing-rows {
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}
.timing-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}
@media (min-width: 640px) {
  .timing-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.timing-row:last-child {
  border-bottom: none;
}
.timing-row.sun {
  background: var(--red-soft);
}
.timing-row .day {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
}
.timing-row.sun .day {
  color: var(--red);
}
.slot-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #475569;
}
.slot {
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--surface);
  font-weight: 500;
}
.slot-blue {
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
}
.closed-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}
.closed-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.cta-banner {
  padding: 48px 0;
  background: var(--slate);
  text-align: center;
}
@media (min-width: 768px) {
  .cta-banner {
    padding: 64px 0;
  }
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .cta-banner h2 {
    font-size: 28px;
  }
}
.cta-banner > .container > p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 28px;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 640px) {
  .cta-btns {
    flex-direction: row;
    justify-content: center;
  }
}
.cta-btns a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
}
.cta-btns a .icon {
  width: 20px;
  height: 20px;
}
.cta-book {
  background: var(--blue);
  color: #fff;
}
.cta-book:hover {
  filter: brightness(1.05);
}
.cta-wa {
  background: var(--green);
  color: #fff;
}
.cta-wa:hover {
  background: var(--green-dark);
}

footer {
  background: var(--slate);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 48px;
  padding-bottom: 96px;
}
@media (min-width: 768px) {
  footer {
    padding-bottom: 48px;
  }
}
.foot-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .foot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.foot-brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.foot-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
}
.foot-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.foot-about {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}
.foot-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.foot-col a {
  display: block;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.foot-col a:hover {
  color: #fff;
}
.foot-contact p {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 12px;
  line-height: 1.5;
}
.foot-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}
.foot-copy p {
  font-size: 12px;
  color: #64748b;
}

.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  padding: 12px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}
@media (min-width: 1024px) {
  .mobile-bar {
    display: none;
  }
}
.mobile-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 10px;
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}
.mobile-bar a .icon {
  width: 16px;
  height: 16px;
}
.mb-call {
  border: 2px solid var(--slate);
  color: var(--slate);
}
.mb-book {
  background: var(--slate);
  color: #fff;
}

/* —— Tailwind inner pages: mobile bar clearance without white band under last section —— */
main.psc-main-tailwind {
  padding-bottom: 0;
}
main.psc-main-tailwind > *:last-child {
  padding-bottom: max(7rem, calc(4.5rem + env(safe-area-inset-bottom, 0px)));
}
@media (min-width: 1024px) {
  main.psc-main-tailwind > *:last-child {
    padding-bottom: 2.5rem;
  }
}

/* —— Scroll reveal (paired with pawar-shell.js) —— */
.psc-reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--psc-d, 0s);
}
.psc-reveal.psc-reveal-in {
  opacity: 1;
  transform: none;
}
.psc-stagger-children > .psc-reveal:nth-child(1) {
  --psc-d: 0s;
}
.psc-stagger-children > .psc-reveal:nth-child(2) {
  --psc-d: 0.07s;
}
.psc-stagger-children > .psc-reveal:nth-child(3) {
  --psc-d: 0.14s;
}
.psc-stagger-children > .psc-reveal:nth-child(4) {
  --psc-d: 0.21s;
}
.psc-stagger-children > .psc-reveal:nth-child(5) {
  --psc-d: 0.28s;
}
.psc-stagger-children > .psc-reveal:nth-child(6) {
  --psc-d: 0.35s;
}
.psc-stagger-children > .psc-reveal:nth-child(7) {
  --psc-d: 0.42s;
}
.psc-stagger-children > .psc-reveal:nth-child(8) {
  --psc-d: 0.49s;
}
.psc-stagger-children > .psc-reveal:nth-child(9) {
  --psc-d: 0.56s;
}
.psc-stagger-children > .psc-reveal:nth-child(10) {
  --psc-d: 0.63s;
}
.psc-stagger-children > .psc-reveal:nth-child(11) {
  --psc-d: 0.7s;
}
.psc-stagger-children > .psc-reveal:nth-child(12) {
  --psc-d: 0.77s;
}

/* —— Hero entrance (above the fold) —— */
@keyframes psc-hero-enter {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.psc-hero-in {
  opacity: 0;
  animation: psc-hero-enter 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.psc-hero-in-d1 {
  animation-delay: 0.08s;
}
.psc-hero-in-d2 {
  animation-delay: 0.16s;
}
.psc-hero-in-d3 {
  animation-delay: 0.24s;
}
.psc-hero-in-d4 {
  animation-delay: 0.32s;
}

/* —— Subtle CTA shine on hover —— */
@keyframes psc-shine {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: -100% 50%;
  }
}
.psc-cta-shine {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.psc-cta-shine:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(37, 99, 235, 0.45);
}
.psc-cta-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 60%
  );
  background-size: 220% 100%;
  opacity: 0;
  pointer-events: none;
}
.psc-cta-shine:hover::after {
  opacity: 1;
  animation: psc-shine 0.85s ease;
}

/* Home hero photo: static frame — same language as demo cards (rounded-2xl, slate border, soft shadow) */
.psc-hero-photo-wrap {
  width: min(100%, 50vh);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 1.25rem;
}
@media (min-width: 1024px) {
  .psc-hero-photo-wrap {
    margin-right: 0;
    margin-left: auto;
  }
}
.psc-hero-photo-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
  max-height: 50vh;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--surface, #f1f5f9);
  box-shadow:
    0 20px 40px -14px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}
@media (min-width: 1024px) {
  .psc-hero-photo-inner {
    border-radius: 1.25rem;
  }
}
.psc-hero-photo-inner .psc-hero-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes psc-hero-vert-move {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.psc-hero-photo-inner.vert-move {
  -webkit-animation: psc-hero-vert-move 1s infinite alternate;
  animation: psc-hero-vert-move 1s infinite alternate;
}

/* —— Contact page: seamless handoff to footer on mobile —— */
body[data-active="contact"] .cta-banner {
  padding-bottom: max(4rem, calc(3rem + env(safe-area-inset-bottom, 0px)));
}
@media (min-width: 768px) {
  body[data-active="contact"] .cta-banner {
    padding-bottom: 64px;
  }
}

.home-testimonial-body {
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}
.home-testimonial-body--out {
  opacity: 0;
  transform: translateY(10px);
}

@media (prefers-reduced-motion: reduce) {
  .psc-reveal,
  .psc-reveal.psc-reveal-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .psc-hero-in,
  .psc-hero-in-d1,
  .psc-hero-in-d2,
  .psc-hero-in-d3,
  .psc-hero-in-d4 {
    animation: none;
    opacity: 1;
  }
  .psc-hero-photo-inner.vert-move {
    -webkit-animation: none;
    animation: none;
    transform: none;
  }
  .psc-cta-shine:hover {
    transform: none;
  }
  .psc-cta-shine::after,
  .psc-cta-shine:hover::after {
    animation: none;
    opacity: 0;
  }
  .home-testimonial-body,
  .home-testimonial-body--out {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .nav-links a:hover {
    transform: none;
  }
}
