/* ── HERO ── */
.hero {
  padding: 72px 0 64px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 40px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1.5px solid rgba(235, 41, 44, .07);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-lt);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(235, 41, 44, .15);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .2;
  }
}

.hero-headline {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -.5px;
}

.hero-headline em {
  font-style: italic;
  color: var(--blue);
  position: relative;
  white-space: nowrap;
}

.hero-headline em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
  margin-top: 20px;
}

.trust-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-item i {
  color: var(--teal);
  font-size: .85rem;
}

.trust-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
}

.stat-strip {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.stat-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.stat-pill-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1;
}

.stat-pill-label {
  font-size: .73rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.3;
}

/* ── SCORE PANEL ── */
.score-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r1);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.score-panel-topbar {
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.score-panel-body {
  padding: 32px 28px;
}

.score-panel-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.gstin-field {
  width: 100%;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--r3);
  padding: 14px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 1.5px;
  transition: all .2s;
  outline: none;
}

.gstin-field::placeholder {
  color: #b0b9d0;
  font-weight: 400;
  letter-spacing: .5px;
}

.gstin-field:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(235, 41, 44, .1);
}

.gstin-field.error {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .1);
}

.gstin-field.valid {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 201, 167, .1);
}

.gstin-hint {
  font-size: .73rem;
  font-weight: 600;
  margin-top: 0px;
  min-height: 16px;
  transition: color .2s;
}

.gstin-hint.info {
  color: var(--muted);
}

.gstin-hint.valid {
  color: var(--teal);
}

.gstin-hint.error {
  color: var(--red);
}

.btn-analyse {
  width: 100%;
  margin-top: 0px;
  background: linear-gradient(135deg, var(--blue), #c82022);
  color: #fff;
  border: none;
  border-radius: var(--r3);
  padding: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(235, 41, 44, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-analyse:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(235, 41, 44, .45);
}

.btn-analyse:active {
  transform: none;
}

.btn-analyse .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  animation: spin .7s linear infinite;
}

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

.loading-state .btn-text {
  display: none;
}

.loading-state .spinner {
  display: block !important;
}

.panel-divider {
  margin: 24px 0;
  border: none;
  border-top: 1px solid var(--border);
}

.gauge-wrap {
  text-align: center;
}

.gauge-svg-container {
  width: 200px;
  margin: 0 auto 4px;
}

.gauge-big-num {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  display: inline-block;
}

.gauge-denom {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.tier-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  margin-top: 0px;
}

.tier-excellent {
  background: var(--teal-lt);
  color: #00856e;
  border: 1px solid #b2efe4;
}

.tier-good {
  background: var(--amber-lt);
  color: #92400e;
  border: 1px solid #fcd34d;
}

.tier-fair {
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
}

.tier-poor {
  background: var(--red-lt);
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.legend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 16px;
}

.legend-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: var(--r3);
  background: var(--off);
  border: 1px solid var(--border);
  font-size: .76rem;
}

.legend-bar {
  width: 4px;
  height: 24px;
  border-radius: 2px;
  flex-shrink: 0;
}

.legend-chip-label {
  font-weight: 600;
  color: var(--ink2);
}

.legend-chip-range {
  font-size: .68rem;
  color: var(--muted);
}

.report-cta-box {
  margin-top: 20px;
  background: linear-gradient(135deg, #fffbf0, #fff8eb);
  border: 1px solid #fde68a;
  border-radius: var(--r2);
  padding: 16px 18px;
}

.btn-report {
  width: 100%;
  margin-top: 10px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #fff;
  border: none;
  border-radius: var(--r3);
  padding: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(245, 158, 11, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.btn-report:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, .45);
}

#placeholder-box {
  text-align: center;
  padding: 20px 0 8px;
}

.ph-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--blue);
  margin: 0 auto 14px;
}

.free-badge {
  position: absolute;
  top: 10px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b35, var(--amber));
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, .4);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* ── SECTIONS ── */
.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.3px;
  line-height: 1.2;
}

.section-sub {
  color: var(--muted);
  font-size: .95rem;
  max-width: 520px;
  line-height: 1.7;
  margin-top: 10px;
}

/* ── HOW IT WORKS ── */
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r1);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
  height: 100%;
}

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

.step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.step-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.step-card h5 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.step-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PARAMETERS (dark) ── */
.params-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.params-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 0% 50%, rgba(235, 41, 44, .25) 0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 100% 80%, rgba(0, 201, 167, .15) 0%, transparent 60%);
  pointer-events: none;
}

.params-section .section-eyebrow {
  color: var(--teal);
}

.params-section .section-title {
  color: var(--white);
}

.params-section .section-sub {
  color: rgba(255, 255, 255, .55);
}

.param-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r2);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .2s;
  backdrop-filter: blur(8px);
}

.param-card:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .2);
  transform: translateX(4px);
}

.param-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.param-name {
  flex: 1;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  line-height: 1.3;
}

.param-pts {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  white-space: nowrap;
}

.param-bar-wrap {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  overflow: hidden;
}

.param-bar-fill {
  height: 100%;
  border-radius: 2px;
}

.tier-table {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r2);
  overflow: hidden;
}

.tier-row {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  gap: 14px;
  transition: background .2s;
}

.tier-row:last-child {
  border-bottom: none;
}

.tier-row:hover {
  background: rgba(255, 255, 255, .05);
}

.tier-color-bar {
  width: 6px;
  height: 32px;
  border-radius: 3px;
  flex-shrink: 0;
}

.tier-label {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  min-width: 80px;
}

.tier-range {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
}

.tier-desc {
  font-size: .75rem;
  color: rgba(255, 255, 255, .4);
  margin-left: auto;
}

/* ── FEATURES ── */
.features-section {
  padding: 40px 0;
  background: var(--off);
}

.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r1);
  padding: 32px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all .25s;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity .25s;
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-card.blue::before {
  background: linear-gradient(90deg, var(--blue), #f06566);
}

.feat-card.teal::before {
  background: linear-gradient(90deg, var(--teal), #00e6c0);
}

.feat-card.amber::before {
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

.feat-card.red::before {
  background: linear-gradient(90deg, var(--red), #f97316);
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.feat-card h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.feat-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
}

.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 16px;
  text-decoration: none;
  transition: gap .2s;
}

.feat-link:hover {
  gap: 9px;
  color: var(--blue-mid);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #c82022 0%, var(--blue) 50%, #f06566 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .1);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
  bottom: -150px;
  left: -50px;
  pointer-events: none;
}

.cta-banner .section-title {
  color: #fff;
}

.cta-sub-text {
  color: rgba(255, 255, 255, .75);
  font-size: 1rem;
  margin-top: 10px;
}

.btn-cta-white {
  background: #fff;
  color: var(--blue);
  border: none;
  border-radius: 50px;
  padding: 15px 36px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
  color: var(--blue-mid);
}

.btn-cta-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: 50px;
  padding: 14px 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-cta-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal .6s ease forwards;
}

.reveal-delay-1 {
  animation-delay: .1s;
}

.reveal-delay-2 {
  animation-delay: .2s;
}

.reveal-delay-3 {
  animation-delay: .3s;
}

.reveal-delay-4 {
  animation-delay: .4s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#result-box {
  display: none;
}

#result-box.visible {
  display: block;
  animation: reveal .45s ease;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--off);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

@media (max-width: 991px) {
  .hero {
    padding: 48px 0 40px;
  }

  .score-panel {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .legend-grid {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    gap: 8px;
  }
}

.label-custom {
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.select-dropdown {
  width: 100%;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--r3);
  padding: 12px 40px 12px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s;
}

/* ── HERO BANNER ── */
.hero {
  background: var(--brand);
  position: relative;
  overflow: hidden;
  padding: 30px 0 48px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, .03) 0px,
      rgba(255, 255, 255, .03) 2px,
      transparent 2px,
      transparent 18px);
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
  animation: fadeDown .5s ease both;
}

.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  /*color: #fff;*/
  line-height: 1.15;
  animation: fadeDown .55s .08s ease both;
}

.hero p.sub {
  color: rgba(255, 255, 255, .8);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  animation: fadeDown .6s .15s ease both;
}

/* ── PRICING CARD ── */
.pricing-wrapper {
  animation: fadeUp .6s .2s ease both;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(235, 41, 44, .14);
  overflow: hidden;
  border: 2px solid var(--brand);
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  top: -28px;
}

.pricing-head {
  background: var(--brand);
  padding: 22px 28px;
  color: #fff;
  text-align: center;
}

.pricing-head h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: .01em;
}

.pricing-body {
  padding: 28px 32px 24px;
  text-align: center;
}

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

.price-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand);
}

.price-amount {
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}

.price-note {
  font-size: .9rem;
  color: var(--muted);
}

.price-old {
  text-decoration: line-through;
  color: #aaa;
  font-size: .95rem;
  margin-bottom: 4px;
}

.price-gst {
  font-size: .8rem;
  color: var(--muted);
}

.savings-pill {
  display: inline-block;
  background: #fff4f4;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 16px;
  border-radius: 30px;
  margin-top: 10px;
}

.report-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 4px;
  text-align: left;
}

.report-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.report-list li:last-child {
  border-bottom: none;
}

.report-list li::before {
  content: '✓';
  display: inline-flex;
  width: 22px;
  height: 22px;
  background: var(--brand);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── ARROW DIVIDER ── */
.arrow-divider {
  text-align: center;
  padding: 6px 0 8px;
  animation: pulse 1.6s ease-in-out infinite;
}

.arrow-divider svg {
  width: 36px;
  fill: var(--brand);
}

/* ── FORM CARD ── */
.form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
  border: 1px solid var(--border);
  max-width: 680px;
  margin: 0 auto 60px;
  padding: 36px 36px 32px;
  animation: fadeUp .65s .3s ease both;
}

.form-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-card p.form-sub {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.form-label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

.form-control {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}

.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(235, 41, 44, .1);
  outline: none;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap .icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #ccc;
  font-size: .95rem;
  pointer-events: none;
}

.btn-pay {
  background: var(--brand);
  border: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 15px 0;
  border-radius: 12px;
  width: 100%;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(235, 41, 44, .35);
  cursor: pointer;
  margin-top: 8px;
}

.btn-pay:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(235, 41, 44, .4);
}

.btn-pay:active {
  transform: translateY(0);
}

.secure-note {
  text-align: center;
  font-size: .78rem;
  color: #aaa;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.secure-note svg {
  width: 13px;
  fill: #bbb;
}

/* ── STEP BADGE ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.step-num {
  width: 34px;
  height: 34px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-title-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ── TOAST ── */
#toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a1a1a;
  color: #fff;
  padding: 13px 28px;
  border-radius: 40px;
  font-size: .9rem;
  font-weight: 500;
  opacity: 0;
  transition: all .35s ease;
  pointer-events: none;
  z-index: 9999;
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}