:root {
  --green-900: #14326f;
  --green-700: #1b57c0;
  --green-500: #1f6ae1;
  --mint-100: #eef4ff;
  --mint-200: #dbe8ff;
  --mint-400: #c5d8ff;
  --yellow-500: #f3c93a;
  --ink-900: #101a16;
  --ink-600: #3c4b43;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(20, 50, 111, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--ink-900);
  background: radial-gradient(circle at top, #f2f6ff 0%, #e8f0ff 45%, #f7faff 100%);
}

[data-i18n],
[data-i18n-html] {
  transition: opacity 0.2s ease;
}

body.lang-switching [data-i18n],
body.lang-switching [data-i18n-html] {
  opacity: 0;
}

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

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

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(240, 246, 255, 0.85);
  backdrop-filter: blur(18px);
  z-index: 10;
  border-bottom: 1px solid rgba(31, 106, 225, 0.12);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Urbanist", "DM Sans", sans-serif;
  font-weight: 800;
  color: var(--green-900);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--ink-600);
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green-500);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(31, 106, 225, 0.2);
  background: rgba(255, 255, 255, 0.7);
}

.lang-toggle button {
  border: none;
  background: transparent;
  color: var(--green-900);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}

.lang-toggle button.active {
  background: linear-gradient(120deg, var(--green-700), var(--green-500));
  color: var(--white);
}

.cta {
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta.primary {
  background: linear-gradient(120deg, var(--green-700), var(--green-500));
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta.secondary {
  background: var(--mint-100);
  color: var(--green-900);
  border-color: rgba(31, 106, 225, 0.2);
}

.cta.ghost {
  background: transparent;
  border-color: rgba(31, 106, 225, 0.3);
  color: var(--green-900);
}

.cta.is-loading {
  pointer-events: none;
}

.cta.is-disabled {
  pointer-events: none;
  opacity: 0.7;
}

.cta.is-user {
  cursor: pointer;
}

.header-user {
  position: relative;
}

.user-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 160px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(31, 106, 225, 0.14);
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 20;
}

.user-menu-item {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--green-900);
  cursor: pointer;
  font-family: inherit;
}

.user-menu-item:hover {
  background: rgba(31, 106, 225, 0.12);
}

.recommendation-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.page-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(240, 246, 255, 0.78);
  backdrop-filter: blur(2px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 98;
}

.page-loading-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.page-loading-overlay .spinner {
  width: 56px;
  height: 56px;
  border-width: 5px;
}

.lopaisa-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 10px);
  background: var(--green-900);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 99;
}

.lopaisa-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.button-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  margin-left: 10px;
  animation: spin 0.9s linear infinite;
  flex-shrink: 0;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(20, 50, 111, 0.18);
}

.hero {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("bg_girl.png") right 20%/620px no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy {
  animation: fadeUp 0.9s ease forwards;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Urbanist", "DM Sans", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-600);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-slider {
  background: var(--white);
  border-radius: 18px;
  padding: 16px 18px 14px;
  box-shadow: 0 12px 30px rgba(20, 50, 111, 0.16);
  max-width: 420px;
  margin-bottom: 26px;
  overflow: hidden;
}

.hero-slider .slides {
  display: flex;
  width: 300%;
  animation: slideLoop 12s ease-in-out infinite;
}

.hero-slider .slide {
  width: 100%;
  padding-right: 16px;
}

.hero-slider h4 {
  font-family: "Urbanist", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--green-900);
}

.hero-slider p {
  color: var(--ink-600);
  font-size: 0.98rem;
}

.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mint-200);
  opacity: 0.5;
}

.slider-dots span:nth-child(1) {
  animation: dotPulse 12s infinite;
}

.slider-dots span:nth-child(2) {
  animation: dotPulse 12s infinite 4s;
}

.slider-dots span:nth-child(3) {
  animation: dotPulse 12s infinite 8s;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stats div {
  background: var(--white);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(20, 50, 111, 0.16);
  min-width: 140px;
}

.stats h3 {
  color: var(--green-700);
  font-size: 1.3rem;
}

.hero-visual {
  display: grid;
  gap: 24px;
  align-items: center;
  justify-items: center;
}

.hero-sliders {
  display: grid;
  gap: 18px;
  width: min(340px, 85vw);
  animation: floatIn 1s ease forwards;
}

.range-card {
  background: var(--white);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  border: 1px solid rgba(31, 106, 225, 0.14);
}

.range-card.secondary {
  background: linear-gradient(140deg, #f3f7ff, var(--mint-100));
  border-color: rgba(31, 106, 225, 0.12);
}

.range-card span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-700);
  font-weight: 700;
}

.range-card strong {
  font-size: 1.5rem;
  font-family: "Urbanist", sans-serif;
  color: var(--green-900);
}

.range-card input[type="range"] {
  width: 100%;
  accent-color: var(--green-500);
}

.range-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--ink-600);
}

.portrait {
  background: var(--mint-200);
  border-radius: 30px;
  padding: 32px;
  position: relative;
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: 12px;
  overflow: hidden;
}

.portrait .glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(31, 106, 225, 0.35), transparent 70%);
  top: -40px;
  right: -30px;
}


.portrait p {
  font-weight: 600;
  color: var(--green-900);
  position: relative;
  z-index: 1;
}

section {
  padding: 70px 0;
}

.legal-hero {
  padding: 80px 0 40px;
}

.legal-body {
  background: var(--white);
  padding: 60px 0;
}

.legal-content {
  max-width: 900px;
  display: grid;
  gap: 16px;
  color: var(--ink-600);
  line-height: 1.75;
}

.legal-content h2,
.legal-content h3 {
  font-family: "Urbanist", sans-serif;
  color: var(--green-900);
  margin-top: 14px;
}

.legal-content ul {
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

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

.trust-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.trust-cards {
  display: grid;
  gap: 18px;
}

.card {
  background: var(--mint-100);
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(31, 106, 225, 0.14);
  box-shadow: 0 10px 30px rgba(20, 50, 111, 0.12);
}

.about .split,
.compliance .split,
.grievance .split {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.checklist {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  list-style: none;
}

.checklist li {
  padding-left: 26px;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-700);
  font-weight: 700;
}

.about-panel {
  background: linear-gradient(130deg, var(--mint-100), var(--mint-400));
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.pill {
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 600;
}

.steps {
  background: var(--mint-100);
}

.steps-grid {
  margin-top: 24px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(20, 50, 111, 0.12);
}

.step span {
  font-family: "Urbanist", sans-serif;
  color: var(--green-700);
  font-size: 1.4rem;
  font-weight: 700;
}

.partners-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.partners-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.partner-card {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(20, 50, 111, 0.16);
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(31, 106, 225, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(20, 50, 111, 0.22);
}

.partner-card:hover::after {
  opacity: 1;
}

.partner-logo {
  width: 100%;
  height: 110px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-logo::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 106, 225, 0.14), transparent 70%);
  right: -30px;
  top: -40px;
  opacity: 0.35;
}

.partner-logo img {
  max-width: 75%;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(20, 50, 111, 0.18));
}

.partner-card:hover .partner-logo {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20, 50, 111, 0.2);
}

.compliance-card,
.grievance-card {
  background: var(--mint-100);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(31, 106, 225, 0.14);
}

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

.contact-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.contact-card {
  background: var(--mint-100);
  padding: 24px;
  border-radius: 22px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(31, 106, 225, 0.14);
  box-shadow: 0 16px 40px rgba(20, 50, 111, 0.12);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -60px;
  top: -60px;
  background: radial-gradient(circle, rgba(31, 106, 225, 0.18), rgba(31, 106, 225, 0));
}

.contact-details {
  gap: 20px;
}

.contact-item {
  display: grid;
  gap: 8px;
}

.contact-label {
  font-weight: 600;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.contact-value {
  font-size: 1.05rem;
  color: var(--ink-900);
  line-height: 1.6;
  word-break: break-word;
}

.contact-value a,
.contact-value[href] {
  color: inherit;
  text-decoration: none;
}

.contact-value[href]:hover {
  color: var(--green-700);
}

.site-footer {
  background: var(--green-900);
  color: var(--white);
  padding: 50px 0;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(280px, 2fr) minmax(180px, 1fr) minmax(220px, 1.2fr);
  align-items: start;
}

.footer-branding {
  display: grid;
  gap: 16px;
  max-width: 560px;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-height: none;
  overflow: visible;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand img {
  filter: brightness(1.1);
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links h4 {
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  margin-bottom: 6px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

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

.footer-details {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-details h4 {
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 32px;
  padding: 18px 0 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.9);
}

.flow {
  padding-bottom: 90px;
}

.flow-hero {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.flow-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(31, 106, 225, 0.14), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(31, 106, 225, 0.18), transparent 50%);
  pointer-events: none;
}

.flow-hero .container {
  position: relative;
  z-index: 1;
}

.flow-shell {
  padding: 20px 0 60px;
}

.flow-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.flow-aside {
  position: sticky;
  top: 120px;
  align-self: start;
}

.flow-progress {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.flow-step-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-600);
}

.flow-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--mint-200);
  overflow: hidden;
}

.flow-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(120deg, var(--green-700), var(--green-500));
  transition: width 0.3s ease;
}

.flow-steps {
  margin-top: 24px;
  list-style: none;
  display: grid;
  gap: 14px;
  font-weight: 600;
  color: var(--ink-600);
}

.flow-steps li {
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}

.flow-steps li.active {
  border-color: rgba(31, 106, 225, 0.35);
  background: rgba(31, 106, 225, 0.12);
  color: var(--green-900);
}

.flow-steps li.completed {
  color: var(--green-900);
  background: rgba(219, 232, 255, 0.9);
}

.flow-card {
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.flow-card.compact {
  max-width: 520px;
  margin: 0 auto;
}

.flow-card.compact .flow-step {
  justify-items: center;
}

.flow-card.compact .flow-step > * {
  width: 100%;
}

.flow-card.compact .code-grid {
  max-width: 320px;
}

.flow-step {
  display: grid;
  gap: 20px;
}

.step-header h3 {
  font-size: 28px;
}

.step-header p {
  color: var(--ink-600);
  margin-top: 8px;
}

.step-header {
  margin-bottom: 22px;
}

.field {
  display: grid;
  gap: 10px;
}

.field label {
  font-weight: 600;
  color: var(--ink-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(31, 106, 225, 0.25);
  font-family: inherit;
  font-size: 15px;
  background: rgba(240, 246, 255, 0.85);
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--green-700) 50%),
    linear-gradient(135deg, var(--green-700) 50%, transparent 50%),
    linear-gradient(to right, rgba(31, 106, 225, 0.2), rgba(31, 106, 225, 0.2));
  background-position: calc(100% - 18px) calc(50% - 4px), calc(100% - 12px) calc(50% - 4px),
    calc(100% - 34px) 50%;
  background-size: 6px 6px, 6px 6px, 1px 18px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(31, 106, 225, 0.2);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #d33c3c;
  box-shadow: 0 0 0 3px rgba(211, 60, 60, 0.12);
}

.field-error {
  color: #d33c3c;
  font-size: 13px;
  min-height: 16px;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-600);
}

.checkbox input {
  width: 18px;
  height: 18px;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.radio-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--ink-900);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(31, 106, 225, 0.2);
  background: rgba(240, 246, 255, 0.9);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.radio-grid input {
  margin: 0;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-grid label:has(input:checked) {
  background: rgba(219, 232, 255, 0.95);
  border-color: rgba(31, 106, 225, 0.45);
  box-shadow: 0 12px 24px rgba(20, 50, 111, 0.12);
}

.radio-grid label:has(input:focus-visible) {
  outline: 3px solid rgba(31, 106, 225, 0.3);
  outline-offset: 2px;
}

.code-grid {
  display: grid;
  grid-template-columns: repeat(4, 64px);
  gap: 14px;
  justify-content: center;
  margin: 0 auto;
}

.code-input {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(31, 106, 225, 0.25);
  width: 64px;
}

.flow-contact-card {
  background: rgba(232, 240, 255, 0.7);
  border-radius: 22px;
  padding: 20px;
  display: grid;
  gap: 16px;
}

.flow-contact-card h4 {
  font-size: 18px;
}

.phone-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(31, 106, 225, 0.2);
  border-radius: 14px;
  padding: 10px 12px;
}

.phone-prefix {
  font-weight: 600;
  color: var(--green-900);
}

.phone-input input {
  border: none;
  outline: none;
  flex: 1;
  font: inherit;
  background: transparent;
}

.field.invalid .phone-input {
  border-color: rgba(226, 72, 62, 0.6);
}

.support-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(31, 106, 225, 0.12);
  color: var(--green-900);
  font-weight: 600;
  font-size: 14px;
}

.support-pill a {
  color: inherit;
}

.recommendation-loading {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 30px 0;
  color: var(--ink-600);
}

.spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid var(--mint-200);
  border-top-color: var(--green-700);
  animation: spin 1s linear infinite;
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-branding {
    max-width: 100%;
  }
  .legal-page .site-header,
  .legal-page footer {
    display: none;
  }
  .flow-page .site-header {
    display: none;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLoop {
  0%,
  25% {
    transform: translateX(0);
  }
  33%,
  58% {
    transform: translateX(-100%);
  }
  66%,
  92% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes dotPulse {
  0%,
  10% {
    opacity: 1;
    background: var(--green-500);
  }
  20%,
  100% {
    opacity: 0.5;
    background: var(--mint-200);
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .flow-grid {
    grid-template-columns: 1fr;
  }

  .flow-aside {
    position: static;
    order: 0;
  }

  .flow-card {
    order: 1;
  }

  .flow-steps {
    display: none;
  }

  .flow-hero {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

@media (max-width: 600px) {
  .header-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 50px;
  }

  .stats {
    justify-content: center;
  }

  .flow-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
