/* ===== ZoroPe — Light Theme v7 (No indigo) ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Caveat:wght@400;500;600;700&display=swap');

:root {
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --navy-600: #475569;
  --navy-500: #1e3a8a;
  --navy-400: #2563eb;
  --teal-600: #0891b2;
  --teal-500: #06b6d4;
  --teal-400: #22d3ee;
  --teal-300: #67e8f9;
  --teal-200: #a5f3fc;
  --teal-100: #cffafe;
  --teal-50: #f0f9ff;
  --indigo-600: #4338ca;
  --indigo-500: #4f46e5;
  --indigo-400: #6366f1;
  --indigo-300: #818cf8;
  --indigo-200: #a5b4fc;
  --indigo-100: #c7d2fe;
  --indigo-50: #eef2ff;
  --accent: #10b981;
  --accent-light: #34d399;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gold: #f59e0b;
  --gradient-primary: linear-gradient(135deg, var(--teal-600), var(--indigo-500));
  --gradient-btn: linear-gradient(135deg, var(--indigo-600), var(--indigo-500));
  --gradient-btn-hover: linear-gradient(135deg, var(--indigo-500), var(--indigo-400));
  --gradient-text: linear-gradient(135deg, var(--navy-500), var(--teal-600));
  --gradient-hero: linear-gradient(160deg, var(--teal-50) 0%, var(--indigo-50) 40%, var(--teal-50) 100%);
  --gradient-cta: linear-gradient(135deg, var(--indigo-600), var(--indigo-500));
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 20px rgba(15, 23, 42, .06);
  --shadow-lg: 0 10px 40px rgba(15, 23, 42, .08);
  --shadow-xl: 0 20px 60px rgba(15, 23, 42, .10);
  --shadow-teal: 0 8px 30px rgba(8, 145, 178, .15);
  --shadow-indigo: 0 8px 30px rgba(79, 70, 229, .2);
  --shadow-card: 0 2px 16px rgba(15, 23, 42, .05);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-cursive: 'Caveat', cursive;
  --container: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased
}

body {
  font-family: var(--font-primary);
  color: var(--gray-800);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .3s
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

ul,
ol {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px
}

.cursive {
  font-family: var(--font-cursive)
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--teal-500);
  margin-bottom: 12px
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gradient-btn);
  border-radius: 2px
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy-700);
  margin-bottom: 12px
}

.section-title-big {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy-700);
  margin-bottom: 16px
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 540px;
  line-height: 1.8
}

.text-center {
  text-align: center
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden
}

.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: var(--shadow-indigo)
}

.btn-primary:hover {
  background: var(--gradient-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(79, 70, 229, .35)
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: left .6s
}

.btn-primary:hover::after {
  left: 100%
}

.btn-outline {
  border: 2px solid var(--teal-500);
  color: var(--teal-600);
  background: transparent
}

.btn-outline:hover {
  background: var(--teal-500);
  color: #fff;
  transform: translateY(-2px)
}

.btn-white {
  background: #fff;
  color: var(--navy-700);
  box-shadow: var(--shadow-md);
  font-weight: 700
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg)
}



/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: white;
  box-shadow: none;
  transition: all .4s
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 20px 0px 20px 0px;
}



.navbar .nav-links a {
  color: #000;
}

.navbar.scrolled .nav-links a {
  color: var(--gray-600);
}

.navbar .btn-login {
  color: #fff;
}

.navbar.scrolled .btn-login {
  color: var(--navy-700);
  border: 1px solid #1b5d78;
}

.navbar .hamburger span {
  background: #fff;
}

.navbar.scrolled .hamburger span {
  background: var(--navy-700);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo img {
  height: 60px;
  transition: transform .3s;
  position: absolute;
  top: -30px;

}

.nav-logo {
  position: relative;
  width: 100px
}

.nav-logo:hover img {
  transform: scale(1.04)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px
}

.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-600);
  position: relative
}

.nav-links a:hover {
  color: var(--teal-500)
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--teal-400);
  border-radius: 2px;
  transition: width .3s
}

.nav-links a:hover::after {
  width: 100%
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-actions .btn-login {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy-700);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  transition: all .3s;
  border: 1px solid #1c5a78;
}

.nav-actions .btn-login:hover {
  background: var(--gray-100)
}

.nav-actions .btn-apply {
  padding: 8px 20px;
  font-size: .85rem;
  box-shadow: var(--shadow-sm);
  background: linear-gradient(135deg, var(--indigo-600), var(--indigo-500));
  border-radius: 25px;
}

.nav-actions .btn-apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, .35)
}

.header-store-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 5px;
}

.header-store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--navy-900);
  color: #fff;
  border-radius: 8px;
  transition: all .3s;
}

.header-store-btn:hover {
  background: var(--indigo-600);
  transform: translateY(-2px);
}

.header-store-btn svg {
  width: 16px;
  height: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer
}

.hamburger span {
  width: 22px;
  height: 2.5px;
  background: var(--navy-700);
  border-radius: 4px;
  transition: all .3s
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg)
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  padding: 80px 28px 28px;
  transition: right .4s;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -10px 0 40px rgba(0, 0, 0, .1)
}

.mobile-nav.active {
  right: 0
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100)
}

.mobile-nav a:hover {
  color: var(--teal-500);
  padding-left: 8px
}

.mobile-nav .btn-primary {
  margin-top: 20px;
  text-align: center
}

.mobile-store-badges {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  margin-left: -11px;
}

.mobile-store-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  padding: 11px 12px !important;
  background: var(--navy-900) !important;
  border-radius: var(--radius-md) !important;
  color: #fff !important;
  border-bottom: none !important;
  white-space: nowrap;
  transition: opacity .2s, transform .2s;
}

.mobile-store-btn:hover {
  opacity: .85;
  transform: translateY(-1px);
  padding-left: 12px !important;
  color: #fff !important;
}

.mobile-store-btn svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.mobile-store-btn div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: left;
}

.mobile-store-btn small {
  font-size: .58rem;
  color: rgba(255, 255, 255, .65);
  font-weight: 400;
  white-space: nowrap;
}

.mobile-store-btn strong {
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all .3s
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible
}

/* ═══ HERO RR (RupeeRedee Style) ═══ */
.hero-rr {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--indigo-500) 100%);
  padding: 140px 0 60px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 600px;
  display: flex;
  align-items: center;
  clip-path: ellipse(150% 100% at 50% 0%);
}

.hero-rr .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.hero-rr-content {
  padding-bottom: 120px;
  z-index: 2;
  animation: fadeInUp 1s var(--ease-out) both;
  margin-top: 75px;
}

.hero-rr-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 36px;
  letter-spacing: -1px;
}

.hero-rr-content .gradient-text {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--teal-400);
}

.hero-rr-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 24px;
  max-width: 520px;
  margin-bottom: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-rr-input {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.hero-rr-input .country-code {
  color: var(--navy-900);
  font-weight: 800;
  font-size: 1.1rem;
  border-right: 1px solid var(--gray-200);
  padding-right: 12px;
}

.hero-rr-input input {
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-family: inherit;
  color: var(--navy-900);
  width: 100%;
  font-weight: 500;
}

.hero-rr-form .btn-primary {
  padding: 14px 36px;
  border-radius: var(--radius-full);
  background: var(--teal-300);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-indigo);
}

.hero-rr-form .btn-primary:hover {
  background: var(--gradient-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

.hero-rr-terms {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 500px;
}

.hero-rr-terms a {
  color: #0d00df;
  text-decoration: underline;
}

.hero-rr-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.hero-rr-image img {
  max-height: 650px;
  width: auto;
  display: block;
  object-fit: contain;
  transform: translateY(10px) scale(1.05);
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(10px);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ═══ STEPS ═══ */
.steps-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden
}

.steps-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(240, 253, 250, .4), rgba(238, 242, 255, .3), transparent);
  pointer-events: none
}

.steps-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
  z-index: 2
}

.step-card-big {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .5s var(--ease-out)
}

.step-card-big::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-btn);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s
}

.step-card-big:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent
}

.step-card-big:hover::before {
  transform: scaleX(1)
}

.step-card-num {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  opacity: .15
}

.step-card-img {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  border-radius: 24px;
  background: var(--teal-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s var(--ease-spring)
}

.step-card-img img {
  width: 80%;
  height: 80%;
  object-fit: contain
}

.step-card-big:hover .step-card-img {
  transform: scale(1.1) translateY(-5px)
}

.step-card-big h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 10px
}

.step-card-big p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px
}

.step-card-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--teal-50);
  color: var(--teal-600);
  border: 1px solid var(--teal-100)
}

/* ═══ WHY ═══ */
.why-section {
  padding: 90px 0;
  background: var(--gray-50)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: all .4s;
  text-align: center;
  position: relative;
  overflow: hidden
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-btn);
  transform: scaleX(0);
  transition: transform .4s
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent
}

.service-card:hover::after {
  transform: scaleX(1)
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--teal-50);
  color: var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all .3s var(--ease-spring)
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: #fff;
  transform: scale(1.12)
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 8px
}

.service-card p {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.7
}

/* ═══ WHO CAN APPLY — Modern Grid layout ═══ */
.eligibility-section {
  padding: 90px 0;
  background: #fff;
  position: relative
}

.eligibility-v2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px
}

.elig-v2-card {
  background: #fff;
  border: 1px solid rgba(13, 148, 136, .1);
  border-radius: var(--radius-xl);
  padding: 30px;
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13, 27, 74, .03);
  display: flex;
  align-items: flex-start;
  gap: 20px
}

.elig-v2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(13, 148, 136, .1);
  border-color: rgba(13, 148, 136, .3)
}

.elig-v2-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background: var(--teal-50);
  color: var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s var(--ease-spring)
}

.elig-v2-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.elig-v2-icon i {
  font-size: 24px;
  color: currentColor
}

.elig-v2-card:hover .elig-v2-icon {
  background: var(--teal-400);
  color: #fff;
  transform: scale(1.1) rotate(5deg)
}

.elig-v2-info {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.elig-v2-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 6px
}

.elig-v2-info p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.5
}

/* ═══ TESTIMONIALS — 3-card slider ═══ */
.testimonials-section {
  padding: 90px 0;
  background: var(--gray-50)
}

.test-slider-wrap {
  margin-top: 48px;
  position: relative;
  overflow: hidden
}

.test-slider {
  display: flex;
  transition: transform .5s var(--ease-out);
  gap: 24px;
  will-change: transform
}

.test-card {
  min-width: calc(33.333% - 16px);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: all .5s var(--ease-out);
  opacity: .5;
  transform: scale(.92);
  flex-shrink: 0
}

.test-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: var(--shadow-lg);
  border-color: var(--indigo-300)
}

.test-stars {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: 3px;
  margin-bottom: 16px
}

.test-text {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  min-height: 80px
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .82rem;
  flex-shrink: 0
}

.test-avatar.av-purple {
  background: linear-gradient(135deg, #a78bfa, #7c3aed)
}

.test-avatar.av-teal {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-600))
}

.t-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy-700)
}

.t-role {
  font-size: .75rem;
  color: var(--gray-400)
}

.test-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px
}

.test-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  color: var(--gray-500)
}

.test-btn:hover {
  background: var(--teal-500);
  color: #fff;
  border-color: var(--teal-500);
  transform: scale(1.1)
}

.test-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.test-dots {
  display: flex;
  gap: 6px
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: all .3s;
  cursor: pointer
}

.test-dot.active {
  background: var(--teal-500);
  transform: scale(1.3)
}

/* ═══ EMI CALCULATOR ═══ */
.calc-section {
  padding: 90px 0;
  background: #fff
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 48px
}

.calc-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card)
}

.calc-group {
  margin-bottom: 32px
}

.calc-group label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 12px
}

.calc-group label span {
  font-family: var(--font-cursive);
  font-size: 1.15rem;
  color: var(--teal-500);
  font-weight: 600
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(to right, rgb(6 182 212) 0%, rgb(13, 148, 136) 18.3673%, rgb(226, 232, 240) 18.3673%, rgb(226, 232, 240) 100%) !important;
  outline: none;
  cursor: pointer
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 2px 8px rgba(13, 148, 136, .3);
  cursor: pointer;
  transition: transform .2s
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2)
}

.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 2px 8px rgba(13, 148, 136, .3);
  border: none;
  cursor: pointer
}

.calc-range {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--gray-400);
  margin-top: 4px
}

.calc-result {
  background: linear-gradient(135deg, #1abcd7, #4c43df);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden
}

.calc-result::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 255, 255, .15), transparent);
  pointer-events: none
}

.result-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 6px;
  position: relative;
  z-index: 2
}

.result-amount {
  font-size: 2.8rem;
  font-weight: 800;
  position: relative;
  z-index: 2
}

.result-sub {
  font-size: 1.1rem;
  color: var(--teal-200);
  font-family: var(--font-cursive);
  font-weight: 600;
  margin-bottom: 28px;
  position: relative;
  z-index: 2
}

.result-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  position: relative;
  z-index: 2
}

.rd-value {
  font-size: 1.3rem;
  font-weight: 700
}

.rd-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .45);
  margin-top: 2px
}

.calc-result .btn {
  margin-top: 28px;
  position: relative;
  z-index: 2
}

/* ═══ FAQ ═══ */
.faq-section {
  padding: 90px 0;
  background: var(--gray-50)
}

.faq-layout {
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: 60px;
  align-items: start
}

.faq-left .section-title {
  text-align: left
}

.faq-left .section-subtitle {
  max-width: 320px
}

.faq-email {
  color: var(--teal-500);
  font-weight: 600;
  transition: color .3s
}

.faq-email:hover {
  color: var(--teal-600)
}

.faq-mascot {
    width: 220px;
    margin-top: 32px;
    background: linear-gradient(135deg, #d5f8ff, #c0f5ff);
    padding: 30px;
    border-radius: var(--radius-xl);
    border: 1px solid white;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.05));
    animation: mascotFloat 5s ease-in-out infinite;
    display: block;
}

@keyframes mascotFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(-12px) rotate(2deg)
  }
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all .3s;
  margin-bottom: 10px
}

.faq-item.active {
  border-color: var(--teal-400);
  box-shadow: var(--shadow-md)
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy-700);
  transition: color .3s;
  gap: 12px
}

.faq-item.active .faq-question {
  color: var(--teal-600)
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  flex-shrink: 0;
  color: var(--gray-500);
  margin-left: auto
}

.faq-item.active .faq-toggle {
  background: var(--gradient-btn);
  color: #fff;
  transform: rotate(45deg)
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out)
}

.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.8
}

/* ═══ PINNED SCROLL / ELIGIBILITY (Shared with legacy mascot layout) ═══ */
.how-pin-wrapper {
  position: relative
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 100px
}

.how-sticky-col {
  position: sticky;
  top: 120px;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center
}

.how-sticky-img {
  position: relative;
  width: 420px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center
}

.how-img {
  width: 360px;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(13, 27, 74, .12));
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  position: relative;
  z-index: 2
}

.how-img-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(13, 148, 136, .06), transparent 70%);
  border-radius: 50%;
  z-index: 0
}

.how-scroll-col {
  padding-top: 20px
}

.how-scroll-item {
  padding: 36px 32px;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  transition: all .4s;
  opacity: .35;
  cursor: default
}

.how-scroll-item.active {
  opacity: 1;
  border-color: var(--teal-300);
  box-shadow: var(--shadow-md);
  background: #fff
}

.how-scroll-num {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1
}

.how-scroll-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 8px
}

.how-scroll-item p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.7
}

/* ═══ HOW ZOROPE WORKS — Zigzag Timeline ═══ */
.how-section {
  background: #fff;
  padding-bottom: 60px;
}

.zigzag-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  margin-top: 20px;
}

.zigzag-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gray-200);
  transform: translateX(-50%);
  z-index: 0;
}

.zigzag-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.zigzag-item:nth-child(even) {
  justify-content: flex-end;
}

.zigzag-content {
  width: calc(50% - 60px);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all .4s var(--ease-out);
}

.zigzag-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-300);
  background: #fff;
}

.zigzag-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 15px rgba(79, 70, 229, .35);
}

.zigzag-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: all .4s var(--ease-spring);
}

.zigzag-content:hover .zigzag-icon {
  background: var(--gradient-primary);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

.zigzag-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 12px;
}

.zigzag-content p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ═══ DOWNLOAD APP ═══ */
.download-section {
  padding: 90px 0;
  background: var(--gray-50)
}

.download-card {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: visible;
  position: relative
}

.download-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, .04), transparent);
  border-radius: 50%;
  pointer-events: none
}

.download-left {
  position: relative;
  z-index: 2;
  padding: 40px 56px;
}

.download-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d5f8ff, #c0f5ff);
    padding: 0;
    height: 345px;
    border-top-right-radius: var(--radius-xl);
    border-bottom-right-radius: var(--radius-xl);
}

.download-right img {
  width: 100%;
  height: 346px;
  object-fit: contain;
}

.download-left p {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 420px
}

.download-badges {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--navy-900);
  border-radius: var(--radius-md);
  color: #fff;
  transition: all .3s;
  cursor: pointer
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg)
}

.store-badge small {
  font-size: .65rem;
  color: rgba(255, 255, 255, .6);
  display: block;
  line-height: 1
}

.store-badge strong {
  font-size: .9rem;
  display: block;
  line-height: 1.2
}

.download-stats {
  display: flex;
  gap: 32px
}

.download-stats div {
  text-align: center
}

.download-stats strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-700);
  display: block
}

.download-stats span {
  font-size: .72rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px
}

.download-right {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2
}

.download-mascot {
  width: 380px;
  max-width: none;
  opacity: 1;
  filter: brightness(1.12) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.05));
  animation: mascotFloat 5s ease-in-out infinite;
  position: relative;
  bottom: -60px;
  right: -30px;
  z-index: 3;
}

@media (max-width: 991px) {
  .download-card {
    overflow: hidden;
  }

  .download-mascot {
    width: 280px;
    bottom: 0;
    right: 0;
  }
}

/* ═══ CTA ═══ */
.cta-section {
  padding: 60px 0 80px;
  background: #fff
}

.cta-card {
    background: linear-gradient(135deg, #d5f8ff, #c0f5ff);
    border: 1px solid WHITE;
    border-radius: var(--radius-xl);
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 148, 136, .06), transparent);
  pointer-events: none;
  border-radius: 50%
}

.cta-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy-700);
  margin-bottom: 12px;
  position: relative;
  z-index: 2
}

.cta-card p {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2
}

.cta-mascot {
  position: absolute;
  bottom: -10px;
  width: 140px;
  opacity: 2;
  animation: mascotFloat 5s ease-in-out infinite;
  z-index: 1;
}

.cta-mascot.left {
  left: 40px;
  right: auto;
}

.cta-mascot.right {
  right: 40px;
  left: auto;
}

/* ═══ FOOTER ═══ */
.footer {
    background: #75aeff;
    padding: 80px 0 0;
    color: rgba(255, 255, 255, .8);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.footer-brand {
  max-width: 300px
}

.footer-mascot-img {
  height: 80px;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .2))
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.8;
  margin-bottom: 20px
}

.footer-socials {
  display: flex;
  gap: 10px
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: all .3s;
  color: rgba(255, 255, 255, .8)
}

.footer-social:hover {
  background: var(--teal-500);
  border-color: var(--teal-500);
  color: #fff;
  transform: translateY(-2px)
}

.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px
}

.footer-col ul li {
  margin-bottom: 8px
}

.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
  transition: all .3s
}

.footer-col ul li a:hover {
  color: var(--teal-300);
  padding-left: 4px
}

.footer-middle {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.footer-middle-title {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.footer-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .75);
    background: rgb(59 57 57 / 3%);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-full);
    transition: all .3s
}

.footer-tag:hover {
  color: var(--teal-300);
  border-color: var(--teal-400);
  background: rgba(13, 148, 136, .08)
}

.footer-regulatory {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.footer-regulatory p {
  font-size: .73rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.9
}

.footer-regulatory strong {
  color: rgba(255, 255, 255, .85)
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .65)
}

.footer-bottom-links {
  display: flex;
  gap: 20px
}

.footer-bottom-links a {
  font-size: .6rem;
  color: rgba(255, 255, 255, .65);
  transition: color .3s
}

.footer-bottom-links a:hover {
  color: var(--teal-300)
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out)
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out)
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0)
}

.stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out)
}

.stagger.visible>*:nth-child(1) {
  transition-delay: .05s;
  opacity: 1;
  transform: translateY(0)
}

.stagger.visible>*:nth-child(2) {
  transition-delay: .1s;
  opacity: 1;
  transform: translateY(0)
}

.stagger.visible>*:nth-child(3) {
  transition-delay: .15s;
  opacity: 1;
  transform: translateY(0)
}

.stagger.visible>*:nth-child(4) {
  transition-delay: .2s;
  opacity: 1;
  transform: translateY(0)
}

.stagger.visible>*:nth-child(5) {
  transition-delay: .25s;
  opacity: 1;
  transform: translateY(0)
}

.stagger.visible>*:nth-child(6) {
  transition-delay: .3s;
  opacity: 1;
  transform: translateY(0)
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all .4s;
  cursor: pointer
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl)
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5
}

/* ═══ Responsive ═══ */
@media(max-width:1024px) {
  .nav-logo img {
    height: 72px;
    top: -8px
  }

  .nav-logo {
    width: 72px
  }

  .hero-cards-row {
    flex-wrap: wrap;
    gap: 16px
  }

  .hero-photo-card {
    width: 140px
  }

  .hero-rr .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
    padding-top: 20px;
  }

  .hero-rr-content {
    padding-bottom: 40px;
  }

  .hero-rr-form {
    margin: 0 auto 24px;
  }

  .hero-rr-terms {
    margin: 0 auto;
  }

  .hero-rr-image img {
    max-height: 450px;
    margin: 0 auto;
  }

  .steps-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px
  }

  .services-grid,
  .eligibility-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .calc-wrapper {
    grid-template-columns: 1fr
  }

  .faq-layout {
    grid-template-columns: 1fr
  }

  .faq-left {
    text-align: center
  }

  .faq-left .section-title {
    text-align: center
  }

  .faq-left .section-subtitle {
    margin: 0 auto
  }

  .faq-mascot {
    width: 180px;
    padding: 20px;
    margin: 24px auto 0
  }

  .how-grid {
    grid-template-columns: 1fr
  }

  .how-sticky-col {
    position: relative;
    top: auto;
    margin-bottom: 28px
  }

  .zigzag-container::before {
    left: 28px;
    transform: none;
  }

  .zigzag-marker {
    left: 28px;
    transform: translateX(-50%);
  }

  .zigzag-item {
    justify-content: flex-end;
  }

  .zigzag-content {
    width: calc(100% - 70px);
  }

  .test-card {
    min-width: calc(50% - 12px)
  }

  .download-card {
    grid-template-columns: 1fr;
    text-align: center
  }

  .download-left {
    padding: 24px 20px
  }

  .download-left p {
    margin-left: auto;
    margin-right: auto
  }

  .download-badges {
    justify-content: center
  }

  .download-stats {
    justify-content: center
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .footer-brand {
    grid-column: 1/-1;
    max-width: none;
    text-align: center
  }

  .footer-mascot-img {
    margin: 0 auto 18px
  }

  .footer-socials {
    justify-content: center
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px 0px 20px 0px;
}

  .nav-actions .btn-login {
    display: none
  }

  .nav-actions .btn-apply {
    display: flex;
    padding: 6px 14px;
    font-size: 0.75rem;
  }

  .header-store-badges {
    gap: 4px;
  }

  .header-store-btn {
    width: 28px;
    height: 28px;
  }

  .header-store-btn svg {
    width: 14px;
    height: 14px;
  }

  .nav-logo img {
    height: 64px;
    top: -30px;
  }

  .hero-rr {
    background: linear-gradient(135deg, var(--teal-600) 0%, var(--indigo-500) 100%);
    padding: 140px 0 60px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 730px;
    display: flex;
    align-items: center;
    clip-path: ellipse(150% 100% at 50% 0%);
  }

  .hero-rr-form .btn-primary {
    padding: 10px 10px;
    border-radius: var(--radius-full);
    background: var(--gradient-btn);
    color: #fff;
    font-weight: 800;
    font-size: 10px;
    box-shadow: var(--shadow-indigo);

  }


  .hero-rr-input input {
    border: none;
    outline: none;
    font-size: 12px;
    font-family: inherit;
    color: var(--navy-900);
    width: 100%;
    font-weight: 500;
  }

  .navbar .hamburger span {
    background: #000000;
  }

  .mobile-nav .btn-primary {
    margin-top: 10px;
    text-align: center;
    color: white;
padding-top: 8px;
  }

  .nav-logo {
    width: 64px
  }

  .hero {
    padding: 110px 0 40px;
    min-height: auto
  }

  .hero-rr .container {
    padding-top: 0;
  }

  .hero-rr-content h1 {
    font-size: 2.2rem;
  }

  .hero-rr-image img {
    max-height: 380px;
  }

  .services-grid,
  .eligibility-grid {
    grid-template-columns: 1fr
  }

  .test-card {
    min-width: calc(100% - 0px)
  }

  .cta-card {
    padding: 36px 20px
  }

  .cta-mascot {
    display: none
  }

  .download-card {
    padding: 36px 24px
  }

  .download-mascot {
    width: 200px
  }

  .footer-top {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .calc-card {
    padding: 28px 20px
  }

  .calc-result {
    padding: 32px 20px
  }

  .result-amount {
    font-size: 2.2rem
  }
}

@media(max-width:480px) {
  .hero-top h1 {
    font-size: 1.5rem
  }

  .section-title {
    font-size: 1.4rem
  }

  .section-title-big {
    font-size: 1.6rem
  }

  .hero-cards-row {
    gap: 8px
  }

  .hero-photo-card {
    width: 100px;
    padding: 6px
  }

  .hero-photo-card img {
    height: 80px
  }

  .hero-photo-card span {
    font-size: .7rem
  }

  .hero-photo-center {
    width: 110px
  }

  .hero-photo-center img {
    height: 90px
  }

  .how-sticky-img {
    width: 260px;
    height: 300px
  }

  .how-img {
    width: 240px
  }

  .download-stats {
    gap: 20px
  }
}