.home-page {
  --home-bg: #f3f8ff;
  --home-surface: #ffffff;
  --home-line: #d6e1f0;
  --home-title: #0d2347;
  --home-text: #3f5374;
  --home-primary: #1f58c7;
  --home-primary-strong: #133b84;
  --home-primary-soft: #eaf2ff;
  --home-accent: #0d9f9a;
  --home-shadow-sm: 0 12px 28px rgba(12, 36, 80, 0.1);
  --home-shadow-md: 0 28px 52px rgba(12, 36, 80, 0.16);
  --home-radius-lg: 24px;
  --home-radius-md: 16px;
  --home-radius-sm: 10px;
  font-family: "Manrope", sans-serif;
  color: var(--home-text);
  background: var(--home-bg);
  overflow-x: hidden;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page .home-btn,
.home-page .hero-kicker {
  font-family: "Sora", sans-serif;
}

.home-page header {
  border-bottom: 1px solid var(--home-line);
  box-shadow: 0 8px 18px rgba(12, 36, 80, 0.08);
}

.home-page .rub ul li a {
  color: var(--home-title);
}

.home-main {
  overflow: hidden;
}

.home-shell {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.home-hero {
  position: relative;
  padding: 48px 0 58px;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(45, 111, 223, 0.2) 0%,
      transparent 42%
    ),
    radial-gradient(circle at 92% 18%, rgba(13, 159, 154, 0.16) 0%, transparent 34%),
    linear-gradient(160deg, #f8fbff 0%, #edf4ff 45%, #f5fbff 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 59, 132, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 38px;
}

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

.hero-copy > * {
  opacity: 0;
  transform: translateY(14px);
  animation: revealUp 0.6s ease forwards;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-copy > *:nth-child(2) {
  animation-delay: 0.16s;
}
.hero-copy > *:nth-child(3) {
  animation-delay: 0.22s;
}
.hero-copy > *:nth-child(4) {
  animation-delay: 0.28s;
}
.hero-copy > *:nth-child(5) {
  animation-delay: 0.34s;
}
.hero-copy > *:nth-child(6) {
  animation-delay: 0.4s;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-primary-strong);
  background: rgba(31, 88, 199, 0.12);
  border: 1px solid rgba(31, 88, 199, 0.2);
  margin-bottom: 14px;
}

.hero-copy h1 {
  color: var(--home-title);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.03;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-subtitle {
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 8px;
  color: var(--home-primary-strong);
  font-weight: 600;
}

.hero-description {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
  color: var(--home-text);
}

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

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.home-btn-primary {
  color: #fff;
  background: linear-gradient(
    130deg,
    var(--home-primary-strong) 0%,
    var(--home-primary) 100%
  );
  box-shadow: 0 14px 24px rgba(19, 59, 132, 0.24);
}

.home-btn-primary:hover {
  transform: translateY(-2px);
}

.home-btn-secondary {
  color: var(--home-primary-strong);
  background: #fff;
  border: 1px solid #b6cdf6;
}

.home-btn-secondary:hover {
  background: var(--home-primary-soft);
}

.home-link {
  color: var(--home-primary-strong);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 700;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-badges li {
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--home-primary-strong);
  background: rgba(31, 88, 199, 0.12);
  border: 1px solid rgba(31, 88, 199, 0.2);
  font-weight: 600;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric-box {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--home-line);
  border-radius: 12px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-box span {
  color: var(--home-title);
  font-size: 1rem;
  font-weight: 800;
}

.metric-box small {
  font-size: 0.74rem;
  color: var(--home-text);
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.visual-glow-a {
  width: 220px;
  height: 220px;
  top: 14%;
  left: 8%;
  background: rgba(45, 111, 223, 0.22);
}

.visual-glow-b {
  width: 180px;
  height: 180px;
  bottom: 12%;
  right: 8%;
  background: rgba(13, 159, 154, 0.2);
}

.app-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  border-radius: var(--home-radius-lg);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow-md);
  overflow: hidden;
  background: var(--home-surface);
}

.app-frame svg {
  width: 100%;
  display: block;
}

.visa-illustration {
  background: linear-gradient(160deg, #fbfdff 0%, #eef5ff 100%);
}

.visa-card-shadow {
  fill: rgba(15, 42, 93, 0.22);
  filter: blur(5px);
}

.visa-card-group {
  transform-origin: 282px 196px;
  animation: visaCardFloat 6.2s ease-in-out infinite;
}

.visa-gloss {
  fill: rgba(255, 255, 255, 0.3);
  transform: translateX(-130px) skewX(-18deg);
  animation: visaShine 5.2s ease-in-out infinite;
}

.visa-contact-wave {
  fill: none;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 26;
  stroke-dashoffset: 26;
  animation: contactWave 2.4s ease-in-out infinite;
}

.visa-contact-wave.delay-1 {
  animation-delay: 0.35s;
}

.visa-contact-wave.delay-2 {
  animation-delay: 0.7s;
}

.visa-token {
  animation: tokenFloat 4.8s ease-in-out infinite;
  transform-origin: center;
}

.token-right {
  animation-delay: 1.3s;
}

.visa-sticker {
  fill: rgba(13, 159, 154, 0.9);
  animation: stickerPulse 2.6s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #d8e5f9;
  border-radius: 12px;
  box-shadow: var(--home-shadow-sm);
  backdrop-filter: blur(8px);
  animation: floatCard 4.5s ease-in-out infinite;
}

.floating-card-balance {
  top: 36px;
  left: -18px;
  width: 220px;
  padding: 14px;
}

.floating-card-balance h3 {
  font-size: 0.82rem;
  color: #5c6f8f;
  margin-bottom: 6px;
}

.floating-card-balance p {
  color: var(--home-title);
  font-weight: 800;
  margin-bottom: 3px;
}

.floating-card-balance span {
  color: #6b7e9d;
  font-size: 0.72rem;
}

.floating-card-transfer {
  right: -18px;
  top: 184px;
  width: 230px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  animation-delay: 1s;
}

.floating-card-transfer strong {
  color: var(--home-title);
  display: block;
  font-size: 0.83rem;
}

.floating-card-transfer small {
  color: #6b7e9d;
  font-size: 0.72rem;
}

.floating-card-transfer i {
  font-size: 1.35rem;
  color: var(--home-primary);
}

.floating-card-security {
  left: 22px;
  bottom: 40px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation-delay: 2s;
}

.floating-card-security i {
  color: var(--home-accent);
  font-size: 1.1rem;
}

.floating-card-security p {
  font-size: 0.76rem;
  color: var(--home-title);
  font-weight: 700;
}

.trust-strip {
  margin-top: -22px;
  position: relative;
  z-index: 20;
}

.trust-layout {
  background: linear-gradient(140deg, #0e2d63 0%, #1a4fa8 68%, #1f58c7 100%);
  border-radius: 16px;
  padding: 16px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--home-shadow-sm);
}

.trust-layout p {
  font-size: 0.92rem;
  font-weight: 600;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.trust-logos span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
}

.trust-logos i {
  font-size: 1rem;
}

.home-fees {
  padding: 74px 0 14px;
}

.fee-panel {
  background: #fff;
  border-radius: var(--home-radius-lg);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow-sm);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 28px;
}

.fee-copy h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--home-title);
  line-height: 1.15;
  margin-bottom: 14px;
}

.fee-copy p {
  color: var(--home-text);
  line-height: 1.75;
  margin-bottom: 16px;
}

.fee-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.fee-compare {
  background: linear-gradient(160deg, #f8fbff 0%, #eef5ff 100%);
  border: 1px solid var(--home-line);
  border-radius: 18px;
  padding: 18px;
}

.fee-compare h3 {
  color: var(--home-title);
  margin-bottom: 12px;
}

.fee-compare ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.fee-note {
  font-size: 0.75rem;
  line-height: 1.55;
  color: #5f7393;
  margin-bottom: 12px;
}

.fee-compare li {
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fee-compare span {
  color: #586d8d;
  font-size: 0.88rem;
  font-weight: 600;
}

.fee-compare strong {
  color: var(--home-title);
}

.fee-compare svg {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.home-story {
  padding: 38px 0 12px;
}

.home-credibility {
  padding: 24px 0 18px;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.credibility-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--home-line);
  padding: 18px;
  box-shadow: var(--home-shadow-sm);
}

.credibility-card h3 {
  color: var(--home-title);
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.credibility-card p {
  color: var(--home-text);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.credibility-list {
  display: grid;
  gap: 7px;
}

.credibility-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--home-title);
  font-size: 0.8rem;
  font-weight: 600;
}

.credibility-list i {
  color: var(--home-accent);
}

.credibility-card-highlight {
  background: linear-gradient(150deg, #12336f 0%, #1f58c7 68%, #2d6fdf 100%);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.credibility-card-highlight span {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.88;
}

.credibility-kpi {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 8px;
}

.credibility-kpi strong {
  display: block;
  font-size: 1.2rem;
  color: #fff;
}

.credibility-kpi small {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
}

.home-process {
  padding: 24px 0 14px;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.process-copy {
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-lg);
  box-shadow: var(--home-shadow-sm);
  padding: 24px;
}

.process-copy h2 {
  color: var(--home-title);
  font-size: clamp(1.28rem, 2.2vw, 1.95rem);
  margin-bottom: 10px;
}

.process-copy > p {
  color: var(--home-text);
  line-height: 1.72;
  margin-bottom: 14px;
}

.process-steps {
  display: grid;
  gap: 10px;
}

.process-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: start;
  background: #f6faff;
  border: 1px solid var(--home-line);
  border-radius: 12px;
  padding: 12px;
}

.process-steps span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--home-primary-soft);
  border: 1px solid #b9cff6;
  color: var(--home-primary-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.process-steps h4 {
  color: var(--home-title);
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.process-steps p {
  color: var(--home-text);
  line-height: 1.55;
  font-size: 0.86rem;
}

.process-visual {
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-lg);
  box-shadow: var(--home-shadow-sm);
  padding: 14px;
}

.bank-flow-svg {
  width: 100%;
  display: block;
}

.flow-path {
  fill: none;
  stroke: #2d6fdf;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 10 14;
  animation: pathFlow 9s linear infinite;
}

.flow-node {
  fill: #1f58c7;
  opacity: 0.95;
}

.node-a {
  animation: nodePulse 3.6s ease-in-out infinite;
}

.node-b {
  fill: #0d9f9a;
  animation: nodePulse 3.6s ease-in-out 0.7s infinite;
}

.node-c {
  animation: nodePulse 3.6s ease-in-out 1.4s infinite;
}

.flow-pulse {
  fill: none;
  stroke: rgba(13, 159, 154, 0.45);
  stroke-width: 4;
  transform-origin: 256px 180px;
  animation: wavePulse 2.8s ease-in-out infinite;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.story-card {
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-lg);
  box-shadow: var(--home-shadow-sm);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.story-card-highlight {
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  background: linear-gradient(145deg, #0f2f69 0%, #1f58c7 100%);
  color: #fff;
}

.story-card-highlight .story-copy h3,
.story-card-highlight .story-copy p {
  color: #fff;
}

.story-copy h3 {
  color: var(--home-title);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  margin-bottom: 10px;
}

.story-copy p {
  color: var(--home-text);
  line-height: 1.72;
}

.story-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.story-card-highlight .home-btn-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.story-card-highlight .home-link {
  color: #d7e5ff;
}

.story-visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-visual svg {
  width: 100%;
  display: block;
}

.story-bank-svg {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.story-bank-svg .bank-phone-group {
  transform-origin: 127px 140px;
  animation: bankPhoneFloat 5.8s ease-in-out infinite;
}

.story-bank-svg .bank-route {
  fill: none;
  stroke: rgba(255, 255, 255, 0.58);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  animation: bankRouteDash 8.5s linear infinite;
}

.story-bank-svg .route-two {
  stroke: rgba(13, 159, 154, 0.72);
  animation-duration: 7.6s;
}

.story-bank-svg .bank-route-dot {
  fill: #ffffff;
  animation: bankDotPulse 2.6s ease-in-out infinite;
}

.story-bank-svg .dot-two {
  fill: #0d9f9a;
  animation-delay: 0.8s;
}

.story-bank-svg .bank-panel {
  animation: bankPanelFloat 5s ease-in-out infinite;
}

.story-bank-svg .panel-bottom {
  animation-delay: 1s;
}

.story-bank-svg .bank-spark {
  fill: #ffffff;
  animation: bankSpark 2.4s ease-in-out infinite;
}

.story-bank-svg .spark-b {
  fill: #0d9f9a;
  animation-delay: 0.7s;
}

.story-bank-svg .spark-c {
  animation-delay: 1.3s;
}

.story-points {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.story-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--home-title);
  background: #f5f9ff;
  border: 1px solid var(--home-line);
  padding: 10px;
  border-radius: 10px;
}

.story-points i {
  color: var(--home-primary);
  font-size: 1rem;
}

.home-features {
  padding: 44px 0 20px;
}

.home-testimonials {
  padding: 28px 0 10px;
}

.testimonials-layout {
  background: #fff;
  border-radius: var(--home-radius-lg);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow-sm);
  padding: 24px;
}

.testimonials-head {
  margin-bottom: 14px;
}

.testimonials-head h2 {
  color: var(--home-title);
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  margin-bottom: 8px;
  text-wrap: balance;
}

.testimonials-head p {
  color: var(--home-text);
  line-height: 1.72;
  max-width: 760px;
}

.carousel-shell {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--home-line);
  background: #f7faff;
}

.carousel {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
}

.testimonial {
  flex: 0 0 calc(100% / 3);
  border-right: 1px solid var(--home-line);
  padding: 18px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.testimonial:last-child {
  border-right: none;
}

.testimonial-rate {
  color: #f4b740;
  font-size: 1rem;
  display: flex;
  gap: 2px;
}

.testimonial p {
  color: var(--home-text);
  line-height: 1.68;
  font-size: 0.92rem;
}

.testimonial h4 {
  color: var(--home-title);
  font-size: 0.94rem;
}

.verified-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.verified-name i {
  color: #2d6fdf;
  font-size: 1rem;
}

.testimonial span {
  color: #637797;
  font-size: 0.8rem;
}

.dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #b6c9ea;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dot.active {
  width: 28px;
  background: var(--home-primary);
}

.features-header {
  text-align: center;
  margin-bottom: 20px;
}

.features-header h2 {
  color: var(--home-title);
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  margin-bottom: 8px;
}

.features-header p {
  color: var(--home-text);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-page .feature-card {
  border-radius: 16px;
  border: 1px solid var(--home-line);
  padding: 22px;
  box-shadow: var(--home-shadow-sm);
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-page .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--home-shadow-md);
}

.home-page .feature-card i {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.home-page .feature-card h3 {
  color: var(--home-title);
  margin-bottom: 8px;
}

.home-page .feature-card p {
  color: var(--home-text);
  line-height: 1.7;
}

.feature-card-security i {
  background: #e8f1ff;
  color: var(--home-primary);
}

.feature-card-transfer i {
  background: #e6fbfa;
  color: var(--home-accent);
}

.feature-card-wallet i {
  background: #f0efff;
  color: #5a52bf;
}

.home-support {
  padding: 26px 0 24px;
}

.support-panel {
  background: linear-gradient(140deg, #102e67 0%, #1f58c7 72%, #2d6fdf 100%);
  border-radius: var(--home-radius-lg);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 20px;
  align-items: center;
  padding: 26px;
}

.support-copy h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  margin-bottom: 10px;
}

.support-copy p {
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 14px;
}

.support-panel .home-btn-primary {
  background: #fff;
  color: var(--home-primary-strong);
  box-shadow: none;
}

.support-panel .home-btn-primary:hover {
  background: #eaf2ff;
}

.support-visual {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  overflow: hidden;
}

.support-visual svg {
  display: block;
  width: 100%;
}

.support-bank-svg {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.support-bank-svg .support-orb {
  fill: rgba(255, 255, 255, 0.22);
  animation: supportOrbPulse 4.8s ease-in-out infinite;
}

.support-bank-svg .orb-b {
  fill: rgba(13, 159, 154, 0.2);
  animation-delay: 1.1s;
}

.support-bank-svg .support-agent {
  transform-origin: 109px 140px;
  animation: supportAgentFloat 5.4s ease-in-out infinite;
}

.support-bank-svg .support-ticket {
  transform-origin: 306px 140px;
  animation: supportTicketFloat 5.4s ease-in-out 0.9s infinite;
}

.support-bank-svg .support-track {
  fill: none;
  stroke: #b9cfee;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 7 8;
  animation: supportTrackDash 8s linear infinite;
}

.support-bank-svg .support-step {
  fill: #2d6fdf;
  animation: supportStepPulse 2.6s ease-in-out infinite;
}

.support-bank-svg .step-b {
  fill: #0d9f9a;
  animation-delay: 0.5s;
}

.support-bank-svg .step-c {
  fill: #2d6fdf;
  animation-delay: 1s;
}

.support-bank-svg .support-chat-bubble {
  animation: supportBubbleMove 3.8s ease-in-out infinite;
}

.support-bank-svg .support-badge {
  animation: supportBadgePop 2.8s ease-in-out infinite;
  transform-origin: 378px 204px;
}

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

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

@keyframes visaCardFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.45deg);
  }
  50% {
    transform: translateY(-6px) rotate(0.45deg);
  }
}

@keyframes visaShine {
  0%,
  16% {
    transform: translateX(-160px) skewX(-18deg);
    opacity: 0;
  }
  28% {
    opacity: 0.85;
  }
  45%,
  100% {
    transform: translateX(400px) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes contactWave {
  0% {
    stroke-dashoffset: 26;
    opacity: 0.2;
  }
  40% {
    stroke-dashoffset: 12;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.25;
  }
}

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

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

@keyframes pathFlow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -160;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.78;
  }
}

@keyframes wavePulse {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@keyframes bankPhoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.4deg);
  }
  50% {
    transform: translateY(-6px) rotate(0.4deg);
  }
}

@keyframes bankRouteDash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -110;
  }
}

@keyframes bankDotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.22);
    opacity: 0.6;
  }
}

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

@keyframes bankSpark {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.45);
    opacity: 0.3;
  }
}

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

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

@keyframes supportTrackDash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes supportStepPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.72;
  }
}

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

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

@keyframes supportOrbPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.22);
    opacity: 0.5;
  }
}

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

  .hero-visual {
    width: min(95vw, 620px);
    margin: 0 auto;
    min-height: 480px;
  }

  .floating-card-balance {
    width: 198px;
    left: 0;
  }

  .floating-card-transfer {
    width: 208px;
    right: 0;
  }

  .floating-card-security {
    left: 12px;
  }

  .trust-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-logos {
    justify-content: flex-start;
  }

  .fee-panel {
    grid-template-columns: 1fr;
  }

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

  .process-layout {
    grid-template-columns: 1fr;
  }

  .story-card-highlight {
    grid-template-columns: 1fr;
  }

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

  .testimonial {
    flex-basis: calc(100% / 2);
  }

  .support-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-visual {
    min-height: auto;
    display: grid;
    width: 96vw;
    max-width: none;
    justify-self: center;
    margin-inline: auto;
    gap: 10px;
  }

  .visual-glow {
    display: none;
  }

  .floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    animation-duration: 5.8s;
  }

  .app-frame {
    order: -1;
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding: 28px 0 46px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .home-fees {
    padding-top: 56px;
  }

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

  .testimonial {
    flex-basis: 100%;
    min-height: auto;
    border-right: none;
  }

  .testimonial p {
    font-size: 0.9rem;
  }
}

@media (max-width: 560px) {
  .home-shell {
    width: 94%;
  }

  .hero-copy h1 {
    font-size: 1.85rem;
  }

  .hero-actions,
  .fee-actions,
  .story-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-btn,
  .home-link {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .trust-layout {
    padding: 14px;
  }

  .trust-layout p {
    font-size: 0.84rem;
  }

  .trust-logos span {
    width: 100%;
    justify-content: center;
  }

  .fee-panel,
  .process-copy,
  .process-visual,
  .testimonials-layout,
  .story-card,
  .support-panel {
    padding: 18px;
  }

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

  .hero-visual {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: 1.72rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-description {
    font-size: 0.93rem;
  }

  .trust-logos {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hero-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.09em;
  }

  .metric-box {
    padding: 10px 9px;
  }

  .testimonials-layout {
    padding: 14px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy > *,
  .floating-card,
  .visa-card-group,
  .visa-gloss,
  .visa-contact-wave,
  .visa-token,
  .visa-sticker,
  .flow-path,
  .flow-node,
  .flow-pulse,
  .story-bank-svg .bank-phone-group,
  .story-bank-svg .bank-route,
  .story-bank-svg .bank-route-dot,
  .story-bank-svg .bank-panel,
  .story-bank-svg .bank-spark,
  .support-bank-svg .support-orb,
  .support-bank-svg .support-agent,
  .support-bank-svg .support-ticket,
  .support-bank-svg .support-track,
  .support-bank-svg .support-step,
  .support-bank-svg .support-chat-bubble,
  .support-bank-svg .support-badge {
    animation: none !important;
    transition: none !important;
  }
}
