/* Voucher Paisa  - AWS-aligned palette (60-30-10) */
:root {
  /* Brand anchors */
  --aws-orange: #ff9900;
  --aws-orange-hover: #ec7211;
  --squid-ink: #232f3e;
  --squid-ink-soft: #3c4a5a;

  /* Support palette */
  --cloud-white: #ffffff;
  --section-bg: #f2f3f3;
  --steel-grey: #545b64;
  --success-green: #1d8102;
  /** Brand accent green  - wordmark & micro-highlight */
  --paisa-green: #008567;
  --paisa-green-soft: rgba(0, 133, 103, 0.14);

  /* Application */
  --bg: var(--cloud-white);
  --surface: var(--cloud-white);
  --text: var(--steel-grey);
  --text-heading: var(--squid-ink);
  --muted: var(--steel-grey);
  --border: rgba(35, 47, 62, 0.12);
  --border-strong: rgba(35, 47, 62, 0.18);
  --link: var(--squid-ink);
  --link-hover: var(--squid-ink-soft);
  --nav-on-dark: rgba(255, 255, 255, 0.92);
  --nav-on-dark-muted: rgba(255, 255, 255, 0.72);
  --cta: var(--aws-orange);
  --cta-hover: var(--aws-orange-hover);
  --highlight-accent: var(--aws-orange);
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(35, 47, 62, 0.05), 0 4px 12px rgba(35, 47, 62, 0.05);
  --shadow-md: 0 4px 6px rgba(35, 47, 62, 0.04), 0 12px 28px rgba(35, 47, 62, 0.08);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --max: 1100px;
  --space: 1.25rem;
  --touch-min: 44px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--steel-grey);
  background: var(--cloud-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid rgba(0, 133, 103, 0.45);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4 {
  color: var(--text-heading);
}

strong {
  color: var(--text-heading);
}

img {
  max-width: 100%;
  height: auto;
}

/* Header  - Squid Ink (30% weight) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--squid-ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(0, 133, 103, 0.22);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cloud-white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo:hover {
  text-decoration: none;
  color: var(--nav-on-dark);
}

.logo span {
  color: var(--paisa-green);
  font-weight: 600;
}

.logo:hover span {
  color: #00a67f;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--nav-on-dark);
  font-size: 0.9375rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--cloud-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav a[aria-current="page"] {
  color: var(--cloud-white);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--aws-orange);
  text-underline-offset: 4px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--nav-on-dark);
  padding: 0.25rem 0;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: " ▾";
  font-size: 0.75rem;
  opacity: 0.6;
}

.nav-dropdown[open] summary::after {
  content: " ▴";
}

.nav-dropdown summary:hover {
  color: var(--cloud-white);
}

.nav-dropdown .dropdown-panel {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.35rem;
  min-width: 220px;
  padding: 0.5rem 0;
  background: var(--cloud-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(35, 47, 62, 0.12);
}

.nav-dropdown .dropdown-panel a {
  display: block;
  padding: 0.45rem 1rem;
  color: var(--squid-ink);
  font-size: 0.875rem;
}

.nav-dropdown .dropdown-panel a:hover {
  background: var(--section-bg);
  color: var(--squid-ink);
  text-decoration: none;
}

/* Buttons  - comfortable touch targets (≥44px) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

/* Primary CTA only  - AWS Orange (~10% accent) */
.btn-primary {
  background: var(--cta);
  color: var(--squid-ink);
}

.btn-primary:hover {
  background: var(--cta-hover);
  color: var(--squid-ink);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255, 153, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--squid-ink);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  background: var(--section-bg);
  border-color: var(--squid-ink);
  color: var(--squid-ink);
  text-decoration: none;
}

/* Layout */
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 4vw, 1.5rem) clamp(3rem, 8vw, 4.5rem);
  flex: 1;
}

.section {
  margin-bottom: clamp(2.5rem, 6vw, 3.75rem);
}

.section-title {
  font-size: clamp(1.2rem, 2.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.28;
  margin: 0 0 0.85rem;
  padding-left: 0.55rem;
  border-left: 2px solid var(--paisa-green-soft);
  color: var(--text-heading);
  max-width: 100%;
}

.lead {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--steel-grey);
  max-width: 38rem;
  margin: 0 0 1.5rem;
  line-height: 1.62;
}

.hero .lead {
  max-width: min(42rem, 100%);
}

.lead strong {
  color: var(--text-heading);
}

/* Off-white section bands (30% secondary · separates content without harsh borders) */
.section--alt {
  background: var(--section-bg);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(35, 47, 62, 0.06);
}

/* Hero */
.hero {
  padding: clamp(1.5rem, 4vw, 2.75rem) 0 0.5rem;
}

.hero h1 {
  font-size: clamp(1.65rem, 4.2vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin: 0 0 1rem;
  max-width: min(22rem, 100%);
  color: var(--text-heading);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Trust badges  - readable lines, even grid on larger screens */
.trust-row {
  display: grid;
  gap: 0.65rem;
  margin-top: clamp(1.5rem, 4vw, 2rem);
}

@media (min-width: 560px) {
  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
  min-height: 2.75rem;
  background: var(--cloud-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--steel-grey);
  box-shadow: var(--shadow-sm);
}

.badge strong {
  color: var(--text-heading);
  font-weight: 600;
}

.badge--success {
  background: rgba(0, 133, 103, 0.09);
  border-color: rgba(0, 133, 103, 0.35);
  color: var(--paisa-green);
}

.badge--success strong {
  color: var(--paisa-green);
}

/* Steps  - card layout (no overlapping step bubble) */
.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
  }
}

.step-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--cloud-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(35, 47, 62, 0.14);
}

.step-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.step-card__index {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--squid-ink);
  color: var(--cloud-white);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
  box-shadow: 0 0 0 2px rgba(0, 133, 103, 0.22);
}

.step-card__title {
  margin: 0;
  padding-top: 0.2rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-heading);
}

.step-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--steel-grey);
}

.step-card__text a {
  font-weight: 600;
}

/* Rate / pricing card */
.rate-card {
  width: 100%;
  max-width: 100%;
  background: var(--cloud-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.65rem);
  box-shadow: var(--shadow-sm);
}

.rate-card__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--steel-grey);
}

.rate-card__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .rate-card__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.rate-tile {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  min-height: 100%;
  background: var(--section-bg);
  border: 1px solid rgba(35, 47, 62, 0.08);
  border-radius: var(--radius);
  transition: background 0.15s ease;
}

.rate-tile:hover {
  background: #eef0f0;
}

.rate-tile__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.25;
}

.rate-tile__meta {
  font-size: 0.75rem;
  color: var(--steel-grey);
  line-height: 1.35;
}

.rate-tile__price {
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.rate-card__footnote {
  margin: 1rem 0 0;
}

/* Testimonials */
.quotes {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.quote {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--cloud-white);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(0, 133, 103, 0.45);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--steel-grey);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.quote:hover {
  box-shadow: var(--shadow-md);
}

.quote cite {
  display: block;
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.8125rem;
  font-style: normal;
  color: var(--text-heading);
  font-weight: 600;
}

/* Filters & grid */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  padding: 0.35rem 0.85rem;
  font-family: inherit;
  font-size: 0.8125rem;
  border: 1px solid var(--border);
  background: var(--cloud-white);
  border-radius: 999px;
  cursor: pointer;
  color: var(--steel-grey);
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: var(--squid-ink);
  color: var(--text-heading);
  background: var(--section-bg);
}

.product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--cloud-white);
  border: 1px solid rgba(35, 47, 62, 0.12);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--paisa-green);
  padding: 1.25rem 1.35rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
  box-shadow:
    0 1px 3px rgba(35, 47, 62, 0.06),
    0 10px 28px rgba(35, 47, 62, 0.08);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.page-vouchers {
  background: var(--section-bg);
}

.page-vouchers main {
  background: transparent;
}

.product-card:hover {
  box-shadow:
    0 4px 12px rgba(35, 47, 62, 0.08),
    0 16px 40px rgba(35, 47, 62, 0.1);
  border-color: rgba(35, 47, 62, 0.16);
  transform: translateY(-2px);
}

.product-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--text-heading);
}

.product-card .meta {
  font-size: 0.8125rem;
  color: var(--steel-grey);
}

.product-card .price {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: auto;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(35, 47, 62, 0.08);
  color: var(--text-heading);
}

.product-card__cta {
  align-self: stretch;
  margin-top: 0.85rem;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
}

.product-card[data-tier] {
  transition: opacity 0.2s;
}

.product-card.is-hidden {
  display: none;
}

/* Product detail */
.product-detail {
  background: var(--cloud-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
}

.product-detail h1 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.product-detail .meta {
  color: var(--steel-grey);
  font-size: 0.875rem;
}

.price-large {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  color: var(--text-heading);
}

.disclaimer {
  font-size: 0.875rem;
  color: var(--steel-grey);
  border-left: 3px solid var(--highlight-accent);
  padding-left: 1rem;
  margin: 1.25rem 0;
}

.payment-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--steel-grey);
  font-size: 0.9375rem;
}

.payment-list strong {
  color: var(--text-heading);
}

.payment-list li {
  margin-bottom: 0.35rem;
}

.payment-reveal {
  margin: 0.75rem 0 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--section-bg);
}

.payment-reveal__summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-heading);
}

.payment-reveal__summary::-webkit-details-marker {
  display: none;
}

.payment-reveal__summary::after {
  content: " ▾";
  font-size: 0.75rem;
  opacity: 0.65;
}

.payment-reveal[open] .payment-reveal__summary::after {
  content: " ▴";
}

.payment-reveal__panel {
  padding: 0 1rem 1.1rem;
  font-size: 0.9375rem;
  color: var(--steel-grey);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  background: var(--cloud-white);
}

.payment-reveal__name {
  margin-top: 0.75rem;
}

.payment-reveal__mono {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: 0.02em;
  user-select: all;
}

.payment-reveal.is-locked {
  opacity: 0.7;
}

.payment-reveal.is-locked .payment-reveal__summary {
  cursor: not-allowed;
}

.amount-check {
  margin: 0.75rem 0 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--section-bg);
}

.amount-check__total {
  margin: 0.25rem 0 0.6rem;
  color: var(--text-heading);
  font-size: 1rem;
}

.amount-check__confirm {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-heading);
}

.amount-check__refresh {
  min-height: 32px;
  padding: 0.3rem 0.65rem;
  font-size: 0.8rem;
  margin-left: 0.45rem;
}

/* Forms */
.form {
  max-width: 32rem;
  background: var(--cloud-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--section-bg);
  color: var(--squid-ink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--squid-ink);
  outline-offset: 1px;
  background: var(--cloud-white);
}

.form-hint {
  font-size: 0.75rem;
  color: var(--steel-grey);
  margin-top: 0.25rem;
}

/* FAQ */
.faq details {
  background: var(--cloud-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.5rem;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--text-heading);
}

.faq details p {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: var(--steel-grey);
}

/* Calculator */
.calc-grid {
  display: grid;
  gap: 1rem;
  max-width: 28rem;
}

.calc-result {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1rem;
  background: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-heading);
}

.calc-breakdown {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--steel-grey);
  margin-top: 0.5rem;
}

/* Footer  - Squid Ink */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--squid-ink);
  padding: 2.5rem 1.25rem;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--nav-on-dark-muted);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.4rem;
}

.footer-col a {
  font-size: 0.9375rem;
  color: var(--nav-on-dark);
}

.footer-col a:hover {
  color: var(--cloud-white);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
  color: var(--nav-on-dark-muted);
}

.footer-bottom a:hover {
  color: #4dc4a8;
}

/* Placeholder figure */
.figure-placeholder {
  background: var(--section-bg);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--steel-grey);
  font-size: 0.875rem;
  margin: 1rem 0;
}

.page-intro {
  margin-bottom: 2rem;
}

.page-intro h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  color: var(--text-heading);
}

/* Sticky WhatsApp CTA (SEO / conversion) */
.wa-sticky {
  position: fixed;
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  right: max(1rem, env(safe-area-inset-right, 0px));
  z-index: 200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  max-width: min(18rem, calc(100vw - 2rem));
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow:
    0 6px 20px rgba(35, 47, 62, 0.2),
    0 0 0 1px rgba(0, 133, 103, 0.28);
}

.wa-sticky:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

body.has-wa-sticky {
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  body.has-wa-sticky {
    padding-bottom: 0;
  }
}

.seo-inline-list {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: var(--steel-grey);
  font-size: 0.9375rem;
}

.seo-inline-list li {
  margin-bottom: 0.35rem;
}

.lead a,
.page-intro .lead a {
  font-weight: 600;
  color: var(--squid-ink);
}

.lead a:hover {
  color: var(--squid-ink-soft);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .step-card,
  .quote,
  .product-card,
  .rate-tile {
    transition: none;
  }

  .btn-primary:hover {
    box-shadow: none;
  }

  .step-card:hover,
  .quote:hover,
  .product-card:hover {
    box-shadow: var(--shadow-sm);
    transform: none;
  }

  .wa-sticky:hover {
    filter: none;
  }
}
