:root {
  --blue-950: #0b1739;
  --blue-900: #102458;
  --blue-800: #173b8f;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --ink: #101828;
  --muted: #667085;
  --line: #dce6f5;
  --white: #ffffff;
}

body {
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  min-height: 100%;
}

html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.25rem;
}

::selection {
  background: rgba(37, 99, 235, 0.16);
  color: var(--ink);
}

#main-content {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.65rem 1rem;
  background: var(--blue-600);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.9rem 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e8eef7;
  box-shadow: 0 8px 30px rgba(16, 36, 88, 0.05);
  backdrop-filter: blur(16px);
  transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.navbar.is-scrolled {
  padding: 0.58rem 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 34px rgba(16, 36, 88, 0.09);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--blue-900) !important;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.navbar-brand::before {
  display: none;
}

.navbar-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 5px 9px rgba(16, 36, 88, 0.14));
}

.navbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #475467 !important;
  margin-inline-start: 0.35rem;
  padding: 0.55rem 0.8rem !important;
  border-radius: 9px;
  font-size: 0.94rem;
}

.navbar-nav .nav-icon {
  width: 1rem;
  flex: 0 0 1rem;
  color: currentColor;
  font-size: 0.82rem;
  line-height: 1;
  text-align: center;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.is-active-section {
  color: var(--blue-700) !important;
  background: var(--blue-50);
}

.navbar-toggler {
  border-color: #cbd8eb;
}

.navbar-toggler-icon {
  filter: none;
}

.navbar-collapse {
  align-items: center;
}

.navbar-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 44px;
  padding: 0.65rem 1.35rem;
  border: none;
  border-radius: 999px;
  background: var(--blue-600);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.navbar-apply-btn:hover,
.navbar-apply-btn:focus {
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
}

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

@media (min-width: 992px) {
  .navbar-apply-btn {
    margin-inline-start: 0.85rem;
  }
}

@media (max-width: 991px) {
  .navbar-apply-btn {
    width: 100%;
    margin-top: 0.85rem;
    margin-bottom: 0.35rem;
  }
}

.dropdown-menu {
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(16, 36, 88, 0.12);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
}

.language-flag {
  width: 24px;
  height: 17px;
  flex: 0 0 24px;
  object-fit: cover;
  border: 1px solid rgba(16, 36, 88, 0.12);
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(16, 36, 88, 0.12);
}

.dropdown-item:hover,
.dropdown-item.active {
  color: var(--blue-700);
  background: var(--blue-50);
}

.hero-section {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 7rem 0 9.5rem;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 82% 32%, rgba(59, 130, 246, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  background-size: 42px 42px, 42px 42px, auto, auto;
  border-radius: 0;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 14%;
  right: 3%;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(37, 99, 235, 0.025),
    0 0 0 120px rgba(37, 99, 235, 0.018);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: 43%;
  bottom: 15%;
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: var(--blue-500);
  box-shadow: 48px 55px 0 -3px #93c5fd, -40px 70px 0 -4px var(--blue-700);
  transform: rotate(25deg);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-copy {
  text-align: left;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  padding: 0.5rem 0.9rem;
  max-width: 100%;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.35;
}

.hero-kicker::before {
  display: none;
}

.hero-kicker-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.12);
}

.hero-kicker-text {
  display: block;
  width: auto;
  height: auto;
  background: none;
  box-shadow: none;
  border-radius: 0;
  letter-spacing: inherit;
  text-transform: inherit;
  white-space: normal;
}

.hero-section h1 {
  max-width: 720px;
  margin: 0 0 1.5rem;
  color: var(--blue-950);
  font-size: clamp(3.15rem, 5.3vw, 5.25rem);
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.hero-section .hero-highlight {
  position: relative;
  display: inline-block;
  color: var(--blue-600);
}

.hero-section .hero-highlight::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 0;
  bottom: -5px;
  height: 7px;
  border-radius: 99px;
  background: #bfdbfe;
  z-index: -1;
  transform: rotate(-1.5deg);
}

.hero-section .hero-description {
  max-width: 650px;
  margin: 0;
  color: #526078;
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.3rem;
  border-radius: 12px;
  font-weight: 700;
}

.hero-primary-btn {
  color: #fff;
  background: var(--blue-600);
  border: 1px solid var(--blue-600);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}

.hero-primary-btn:hover {
  color: #fff;
  background: var(--blue-700);
  border-color: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.3);
}

.hero-primary-btn .fa-arrow-right {
  transition: transform 0.2s ease;
}

.hero-primary-btn:hover .fa-arrow-right {
  transform: translateX(3px);
}

.hero-secondary-btn {
  color: var(--blue-900);
  background: #fff;
  border: 1px solid #cad8ee;
}

.hero-secondary-btn:hover {
  color: var(--blue-700);
  background: var(--blue-50);
  border-color: #aac4ec;
}

.hero-secondary-btn i {
  margin-right: 0.55rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 1.65rem;
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-trust i {
  width: 19px;
  height: 19px;
  margin-right: 0.3rem;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 50%;
  font-size: 0.62rem;
  line-height: 19px;
  text-align: center;
}

.hero-console {
  position: relative;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid #d5e2f3;
  border-radius: 26px;
  box-shadow:
    0 35px 80px rgba(30, 64, 175, 0.16),
    0 2px 8px rgba(15, 23, 42, 0.05);
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: -10px 20px auto;
  height: 25px;
  background: rgba(191, 219, 254, 0.55);
  border-radius: 25px 25px 0 0;
  z-index: -1;
}

.console-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.25rem 1.15rem;
  border-bottom: 1px solid #e6edf7;
}

.console-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.console-brand .brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 44px;
  padding: 0;
  background: none !important;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  flex-shrink: 0;
}

.console-brand .brand-mark img {
  width: 62px;
  height: 44px;
  max-width: none;
  object-fit: contain;
  display: block;
}

.console-brand strong,
.console-brand small {
  display: block;
}

.console-brand strong {
  color: var(--blue-950);
  font-size: 0.95rem;
}

.console-brand small {
  color: #8a98ac;
  font-size: 0.75rem;
}

.live-pill {
  padding: 0.5rem 0.82rem;
  color: #047857;
  background: #ecfdf3;
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 750;
}

.live-pill i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-inline-end: 0.38rem;
  background: #10b981;
  border-radius: 50%;
  animation: greenPulse 2s infinite;
}

@keyframes greenPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.38); }
  50% { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
}

.console-stock {
  padding: 2rem 0.4rem 1.5rem;
}

.console-stock > span,
.console-stock > small {
  display: block;
  color: #7b8ba3;
}

.console-stock > span {
  margin-bottom: 0.15rem;
  font-size: 0.83rem;
  font-weight: 600;
}

.console-stock strong {
  display: block;
  color: var(--blue-950);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.7rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.console-stock > small {
  margin-top: 0.3rem;
  font-size: 0.8rem;
}

.console-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.console-stats > div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem;
  background: var(--blue-50);
  border: 1px solid #dce9fa;
  border-radius: 13px;
}

.console-stats i,
.console-stats .archive-icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue-600);
  background: #fff;
  border-radius: 9px;
}

.console-stats .archive-icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.console-stats b,
.console-stats small {
  display: block;
}

.console-stats b {
  color: var(--blue-950);
  font-size: 0.79rem;
}

.console-stats small {
  color: #8694a8;
  font-size: 0.68rem;
}

.console-footer {
  display: flex;
  align-items: center;
  margin-top: 0.75rem;
  padding: 0.9rem;
  color: #fff;
  background: var(--blue-900);
  border-radius: 14px;
}

.console-avatars {
  display: flex;
  margin-right: 0.75rem;
}

.console-avatars span {
  display: grid;
  width: 29px;
  height: 29px;
  margin-left: -6px;
  place-items: center;
  color: var(--blue-900);
  background: #dbeafe;
  border: 2px solid var(--blue-900);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 700;
}

.console-avatars span:first-child {
  margin-left: 0;
}

.console-footer p {
  flex: 1;
  margin: 0;
}

.console-footer strong,
.console-footer small {
  display: block;
}

.console-footer strong {
  font-size: 0.77rem;
}

.console-footer small {
  color: #a9bde6;
  font-size: 0.65rem;
}

.console-footer > i {
  color: #93c5fd;
}

.gmail-payment-strip {
  position: relative;
  z-index: 6;
  width: min(1180px, calc(100% - 2rem));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: -7rem auto 0;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(30, 64, 175, 0.1);
}

.gmail-payment-strip > strong {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin-inline-end: 0.3rem;
  color: var(--blue-950);
  font-size: 0.78rem;
  white-space: nowrap;
}

.gmail-payment-strip > strong i {
  color: var(--blue-600);
}

.payment-logo {
  width: 54px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 0.28rem;
  border: 1px solid #e1e8f2;
  border-radius: 9px;
  background: #f7f9fc;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gmail-payment-strip .payment-logo:hover {
  transform: translateY(-2px);
  border-color: #b8cff0;
  box-shadow: 0 8px 18px rgba(16, 36, 88, 0.08);
}

.payment-logo-wide {
  width: 74px;
}

.payment-logo-coinbase {
  width: 104px;
  background: #fff;
}

.payment-logo-wallet {
  width: 98px;
  background: #fff;
}

.payment-logo img {
  display: block;
  max-width: 100%;
  max-height: 30px;
  object-fit: contain;
}

.payment-logo-coinbase img {
  width: 92px;
  max-height: 20px;
}

.payment-logo-wallet img {
  width: 86px;
}

.gmail-payment-strip + .how-pay-section,
.gmail-payment-strip + .phone-showcase {
  margin-top: 0.75rem;
}

.how-pay-section + .phone-showcase {
  margin-top: 0;
}

.order-form-section {
  position: relative;
  z-index: 5;
  padding: 0 12px;
  margin-top: -5.5rem;
  background: transparent;
  box-shadow: none;
}

.order-form-section > .container {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(16, 36, 88, 0.13);
}

.section-heading {
  max-width: 680px;
}

.section-heading.text-center {
  margin-right: auto;
  margin-left: auto;
}

.order-heading {
  margin-bottom: 2rem;
}

.section-label {
  display: inline-block;
  position: relative;
  margin-bottom: 0.65rem;
  padding-left: 0.85rem;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0.72em;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--blue-500), var(--blue-600));
  transform: translateY(-50%);
}

.section-heading h2,
#contact h2 {
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.feature-list li {
  padding: 0.72rem 0;
  border-bottom: 1px solid #e8eef7;
  color: #4f5f74;
}

.feature-list i {
  color: var(--blue-600);
}

.cookie-card {
  border: 1px solid #cbdcf4;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(30, 64, 175, 0.11);
}

.cookie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(30, 64, 175, 0.15);
}

.cookie-header {
  padding: 1.45rem 1.7rem;
  text-align: left;
  background:
    radial-gradient(circle at 90% 10%, rgba(147, 197, 253, 0.3), transparent 35%),
    linear-gradient(140deg, var(--blue-900), var(--blue-700));
}

.cookie-header h3 {
  font-size: 1.3rem;
}

.cookie-price {
  margin: 0.45rem 0;
  font-size: 3rem;
}

.cookie-content {
  padding: 1.4rem 1.7rem;
}

.cookie-content .mb-3 {
  margin-bottom: 0.75rem !important;
}

.cookie-content .form-label {
  margin-bottom: 0.3rem;
}

.form-control,
.form-select {
  min-height: 46px;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid #d4e0f1;
  border-radius: 11px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 0.22rem rgba(59, 130, 246, 0.13);
}

.btn-primary {
  padding: 0.72rem 1.5rem;
  background: var(--blue-600);
  border-color: var(--blue-600);
  border-radius: 11px;
}

.btn-primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.stock-info {
  color: var(--blue-900);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 10px;
}

.how-it-works {
  position: relative;
  padding: 7rem 0;
  margin: 5rem 0 0;
  background: var(--blue-50);
  border-radius: 0;
}

.how-it-works .row {
  counter-reset: steps;
}

.how-it-works .col-md-4 {
  position: relative;
}

.how-it-works .col-md-4::after {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(50% + 58px);
  width: calc(100% - 116px);
  height: 1px;
  background: #b9cdef;
}

.how-it-works .col-md-4:last-child::after {
  display: none;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-600);
  border: 8px solid #fff;
  box-shadow: 0 0 0 1px #cbdcf4, 0 12px 28px rgba(37, 99, 235, 0.2);
  font-size: 1.45rem;
  line-height: 1;
  flex-shrink: 0;
}

.step-icon i {
  display: block;
  line-height: 1;
}

#how-it-works .how-steps-row {
  justify-content: center;
  margin-inline: auto;
  max-width: 1080px;
}

#how-it-works .how-step-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#how-it-works .how-step-col h3 {
  color: var(--blue-950);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

#how-it-works .how-step-col p {
  color: var(--muted);
  max-width: 300px;
  margin: 0;
}

@media (min-width: 992px) {
  #how-it-works .how-step-col::after {
    content: "";
    position: absolute;
    top: 36px;
    left: calc(50% + 52px);
    width: calc(100% - 104px);
    height: 1px;
    background: #b9cdef;
    pointer-events: none;
  }

  #how-it-works .how-step-col:last-child::after {
    display: none;
  }
}

.how-it-works h3 {
  color: var(--blue-950);
  font-size: 1.25rem;
}

.how-it-works p {
  color: var(--muted);
}

/* --- How it works: pay anywhere demo --- */
.how-pay-section {
  background: linear-gradient(180deg, #eef4ff 0%, #f8fbff 45%, #fff 100%);
  padding: clamp(3rem, 6vw, 5rem) 0 !important;
}

.how-pay-lead {
  max-width: 720px;
  margin-inline: auto;
  color: var(--muted);
  line-height: 1.65;
}

.how-pay-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: stretch;
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 1100px;
  margin: 0 auto;
}

.how-pay-steps-col {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  align-self: stretch;
}

.how-pay-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  align-content: center;
  height: 100%;
  min-height: 0;
  padding: 1rem 1.25rem;
  border: 1px solid #dbe6f5;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(16, 36, 88, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.how-pay-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(16, 36, 88, 0.1);
}

.how-pay-step-num {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  background: linear-gradient(145deg, #2563eb, #1d4ed8);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.28);
}

.how-pay-step-body {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.35rem 0.85rem;
  align-items: start;
  min-width: 0;
}

.how-pay-step-body h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.12rem;
  grid-column: 2;
  grid-row: 1;
  line-height: 1.35;
}

.how-pay-step-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
  grid-column: 2;
  grid-row: 2;
}

.how-pay-step-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 12px;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  font-size: 1.05rem;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  margin: 0;
}

.how-pay-phone-col {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 0.5rem 0;
}

/* --- iPhone device mockup --- */
.iphone-device {
  position: relative;
  width: min(100%, 300px);
  filter: drop-shadow(0 32px 64px rgba(6, 8, 22, 0.28));
}

.iphone-device-shell {
  position: relative;
  padding: 10px;
  border-radius: 50px;
  background: linear-gradient(155deg, #5a5a60 0%, #2c2c30 28%, #141418 62%, #3a3a40 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.85);
}

.iphone-side-btn {
  position: absolute;
  background: linear-gradient(180deg, #4a4a4e, #2a2a2e);
  border-radius: 2px;
  z-index: 2;
}

.iphone-side-btn-power {
  right: -2px;
  top: 128px;
  width: 3px;
  height: 72px;
}

.iphone-side-btn-vol-up {
  left: -2px;
  top: 108px;
  width: 3px;
  height: 36px;
}

.iphone-side-btn-vol-down {
  left: -2px;
  top: 154px;
  width: 3px;
  height: 36px;
}

.iphone-device-screen {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(59, 130, 246, 0.14), transparent 55%),
    linear-gradient(180deg, #f8faff 0%, #eef3fb 55%, #e8eef8 100%);
  height: 540px;
  max-height: 540px;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.iphone-dynamic-island {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 4;
  width: 88px;
  height: 26px;
  border-radius: 20px;
  background: #0a0a0c;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.iphone-status-bar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 6px;
  color: #101828;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.iphone-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.62rem;
  opacity: 0.85;
}

.iphone-home-indicator {
  flex-shrink: 0;
  width: 108px;
  height: 4px;
  margin: 10px auto 12px;
  border-radius: 99px;
  background: rgba(16, 24, 40, 0.28);
}

.how-pay-phone-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.35rem 1rem 0.55rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.how-pay-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: howPayPulse 2s ease-in-out infinite;
}

@keyframes howPayPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.how-pay-tx-track {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent, #000 6%, #000 94%, transparent);
}

.how-pay-tx-list {
  display: grid;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem 0.85rem;
  animation: howPayScroll 28s linear infinite;
}

@keyframes howPayScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.how-pay-tx {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.58rem 0.68rem;
  border-radius: 16px;
  background: rgba(16, 24, 40, 0.92);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 8px 20px rgba(6, 8, 22, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.how-pay-tx-logo {
  width: 34px;
  height: 34px;
  padding: 6px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.how-pay-tx-meta,
.how-pay-tx-amount {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.how-pay-tx-meta strong,
.how-pay-tx-amount strong {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.how-pay-tx-meta span,
.how-pay-tx-amount span {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.how-pay-tx-amount {
  text-align: right;
}

.tx-coin {
  display: inline-block;
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.92;
}

.how-pay-methods {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.75rem;
  border-top: 1px solid #dbe6f5;
  text-align: center;
}

.how-pay-methods-label {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.how-pay-methods-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.how-pay-method-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid #dce6f5;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(16, 36, 88, 0.05);
}

.how-pay-method-chip img {
  display: block;
  object-fit: contain;
}

.how-pay-method-brand {
  display: block;
  width: auto;
  height: 20px;
  max-width: 88px;
}

.how-pay-method-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.how-pay-method-chip-logo {
  padding: 0.5rem 0.8rem;
}

.how-pay-method-chip:not(.how-pay-method-chip-logo) {
  gap: 0.45rem;
}

@media (max-width: 991px) {
  .how-pay-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .how-pay-phone-col {
    order: -1;
    align-self: auto;
  }

  .how-pay-steps-col {
    grid-template-rows: none;
    gap: 1rem;
  }

  .how-pay-step {
    height: auto;
  }

  .iphone-device {
    width: min(100%, 280px);
  }

  .iphone-device-screen {
    height: 500px;
    max-height: 500px;
  }
}

@media (max-width: 575px) {
  .how-pay-step {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .how-pay-step-num {
    display: none;
  }

  .iphone-device-screen {
    height: 460px;
    max-height: 460px;
  }

  .how-pay-method-chip {
    font-size: 0.72rem;
    padding: 0.38rem 0.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-pay-tx-list {
    animation: none;
  }

  .how-pay-live-dot {
    animation: none;
  }
}

#features {
  margin-top: 0 !important;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(4rem, 6vw, 7rem) !important;
  background: #fff;
}

.phone-showcase {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0 clamp(1.75rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, #eef4ff 0%, #f8fbff 60%, #fff 100%);
  overflow: hidden;
}

.section-bridge {
  display: flex;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.25rem) 1rem;
  background: #fff;
}

.section-bridge-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(240px, 55%);
}

.section-bridge-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cbd8eb 20%, #93c5fd 50%, #cbd8eb 80%, transparent);
}

.section-bridge-dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-500);
  opacity: 0.45;
}

.phone-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 20%, rgba(37, 99, 235, 0.1), transparent 70%),
    radial-gradient(ellipse 40% 30% at 15% 80%, rgba(37, 99, 235, 0.06), transparent 70%),
    radial-gradient(ellipse 40% 30% at 85% 80%, rgba(37, 99, 235, 0.06), transparent 70%);
  pointer-events: none;
}

.phone-showcase-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.phone-showcase-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  justify-items: center;
  gap: clamp(0.75rem, 2.5vw, 2rem);
  width: 100%;
  margin: 0 auto;
}

.phone-mock {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  aspect-ratio: 213 / 456;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(16, 36, 88, 0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.phone-mock-left,
.phone-mock-center,
.phone-mock-right {
  margin: 0;
  opacity: 1;
  transform: none;
}

.phone-mock-center {
  max-width: 260px;
  filter: drop-shadow(0 22px 44px rgba(16, 36, 88, 0.18));
}

.phone-showcase-stage:hover .phone-mock-left,
.phone-showcase-stage:hover .phone-mock-right {
  transform: translateY(-4px);
}

.phone-showcase-stage:hover .phone-mock-center {
  transform: translateY(-6px);
}

.phone-showcase-caption {
  margin: 1.25rem auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .phone-showcase-stage {
    gap: 0.5rem;
    padding: 0;
  }

  .phone-mock {
    max-width: 100%;
  }

  .phone-mock-center {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .phone-showcase-stage {
    gap: 0.35rem;
  }
}

#features .row {
  justify-content: center;
}

#features .col-md-4 > .p-4 {
  position: relative;
  height: 100%;
  padding: 1.7rem !important;
  text-align: center;
  background: #fff;
  border: 1px solid #dbe6f5;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.25s ease;
}

#features .col-md-4 > .p-4::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -42px;
  width: 95px;
  height: 95px;
  background: var(--blue-50);
  border-radius: 50%;
  pointer-events: none;
}

#features .col-md-4 > .p-4:hover {
  transform: translateY(-6px);
  border-color: #b8cff0;
  box-shadow: 0 22px 50px rgba(30, 64, 175, 0.1);
}

#features .col-md-4 > .p-4 i {
  display: grid;
  width: 48px;
  height: 48px;
  margin-right: auto;
  margin-left: auto;
  place-items: center;
  color: var(--blue-600) !important;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 13px;
  font-size: 1.35rem !important;
}

#features h3 {
  color: var(--blue-950);
  font-size: 1.2rem;
}

#features p {
  color: var(--muted);
}

#contact {
  padding: 2.6rem 0 !important;
  background:
    linear-gradient(105deg, #f7faff 0%, #edf4ff 100%) !important;
}

#contact > .container {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 1080px;
  width: 100%;
}

#contact .text-center.mb-5 {
  margin-bottom: 0 !important;
  text-align: left !important;
}

#contact .section-label {
  margin-bottom: 0.35rem;
}

#contact h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

#contact .lead {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

#contact > .container > .row {
  width: 100%;
  margin: 0;
}

#contact > .container > .row > .col-lg-8 {
  width: 100%;
  max-width: none;
  padding: 0;
}

#contact .card {
  border: 1px solid #dce6f5 !important;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.07) !important;
}

#contact .card-body {
  padding: 1.25rem 1.4rem !important;
}

#contact .mb-3 {
  margin-bottom: 0.6rem !important;
}

#contact .form-label {
  margin-bottom: 0.3rem;
  color: #344054;
  font-size: 0.88rem;
}

#contact .form-control,
#contact .form-select {
  min-height: 40px;
  background: #fbfdff;
  font-size: 0.9rem;
}

#contact .contact-control-wrap {
  position: relative;
  width: 100%;
}

#contact .contact-control-icon {
  position: absolute;
  inset-inline-start: 0.85rem;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 1.1rem;
  height: 1.1rem;
  place-items: center;
  color: var(--blue-600);
  font-size: 0.88rem;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
  pointer-events: none;
}

#contact .contact-control-icon + .form-control {
  padding-inline-start: 2.55rem;
}

#contact .form-select {
  padding-inline-start: 0.85rem;
}

#contact .contact-control-wrap-textarea .contact-control-icon {
  top: 0.95rem;
  transform: none;
}

#contact textarea.form-control {
  min-height: 72px;
  height: 72px;
  resize: vertical;
}

#contact .btn-primary {
  padding: 0.58rem 1.25rem;
}

#contact .btn-primary .fa-paper-plane {
  margin-inline-end: 0.42rem;
}

#contact .mt-4.text-center {
  margin-top: 0.65rem !important;
  color: var(--muted);
  font-size: 0.78rem;
}

#contact .mt-4.text-center p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  #contact {
    padding: 2.5rem 0 !important;
  }

  #contact > .container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #contact .text-center.mb-5 {
    text-align: center !important;
  }

  #contact .lead {
    max-width: 560px;
    margin: 0 auto;
  }
}

.seo-content {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 36, 88, 0.07);
}

.seo-content h2,
.seo-content h3 {
  color: var(--blue-950);
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
}

.seo-content h2:first-child,
.seo-content .initial-content h2:first-child {
  margin-top: 0;
}

.seo-content p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.seo-article-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: #f8fbff;
}

.hidden-content {
  display: none;
}

.read-more-btn {
  color: var(--blue-600);
  font-weight: 600;
  cursor: pointer;
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.read-more-btn:hover {
  color: var(--blue-700);
}

.footer {
  padding: 3.5rem 0 0;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #0b1739 0%, #08122b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer a {
  color: rgba(191, 219, 254, 0.92);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
}

.footer-brand-block {
  max-width: 320px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: #fff !important;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-brand img,
.footer-brand-logo {
  flex-shrink: 0;
  display: block;
  width: auto;
  height: 32px;
  max-width: 160px;
  object-fit: contain;
  border-radius: 0;
}

.footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.footer-col h4 {
  margin: 0 0 0.9rem;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
}

.footer-col a:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.48);
}

.footer-meta {
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand-block {
    max-width: none;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-tagline {
    max-width: 420px;
    margin-inline: auto;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 2rem;
    text-align: center;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 220px);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-meta {
    text-align: center;
    white-space: normal;
    max-width: 28rem;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: 2.75rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: center;
  }

  .footer-col:last-child {
    grid-column: auto;
    width: auto;
  }

  .footer-col + .footer-col {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-col a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-bottom: 0;
    padding: 0.35rem 0;
  }

  .footer-col h4 {
    margin-bottom: 0.5rem;
  }

  .footer-brand img,
  .footer-brand-logo {
    height: 28px;
    max-width: 136px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: calc(1.35rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-meta {
    text-align: center;
    white-space: normal;
    max-width: 28rem;
  }

  .footer .container {
    padding-bottom: 1.35rem;
  }
}

@media (max-width: 576px) {
  .footer-tagline {
    max-width: 100%;
    font-size: 0.875rem;
    line-height: 1.6;
    padding-inline: 0.25rem;
  }

  .footer-bottom {
    font-size: 0.74rem;
    gap: 0.65rem;
  }

  .footer-meta {
    max-width: 100%;
  }
}

.pulse {
  right: 28px;
  bottom: 28px;
  background: var(--blue-600);
  animation: blueWhatsappPulse 3s infinite;
}

.pulse:hover {
  background: var(--blue-700);
}

@keyframes blueWhatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45); }
  70% { box-shadow: 0 0 0 18px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .live-pill i,
  .pulse {
    animation: none;
  }

  #features .col-md-4 > .p-4 {
    transition: none;
  }
}

.page-scroll {
  position: fixed;
  inset-block-end: 1.25rem;
  inset-inline-end: 1.25rem;
  z-index: 90;
  display: grid;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid rgb(207 221 241 / 88%);
  border-radius: 99px;
  background: rgb(255 255 255 / 90%);
  box-shadow: 0 14px 40px rgb(15 39 73 / 18%);
  backdrop-filter: blur(12px);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
}

.page-scroll.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.page-scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  min-height: 46px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 65%);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #145ee8, #0d47b8);
  box-shadow: 0 7px 16px rgb(20 94 232 / 28%);
  cursor: pointer;
  pointer-events: auto;
}

.page-scroll-btn:hover {
  color: #fff;
  background: #061326;
  transform: translateY(-1px);
}

.page-scroll-btn:focus-visible {
  outline: 3px solid rgb(20 94 232 / 25%);
  outline-offset: 3px;
}

.page-scroll-btn svg {
  display: block;
  width: 22px;
  height: 22px;
}

.page-scroll-btn:disabled {
  opacity: 0.32;
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}

@media print {
  .page-scroll {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 0.8rem;
    width: 100%;
  }

  .navbar-nav .nav-link {
    margin-inline-start: 0;
    width: 100%;
  }

  .navbar-collapse {
    align-items: stretch;
    width: 100%;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    padding-bottom: 0.75rem;
  }

  .navbar-apply-btn {
    width: 100%;
    align-self: stretch;
    white-space: normal;
    text-align: center;
    padding-inline: 1rem;
  }

  .hero-section {
    padding: 5.5rem 0 9rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-kicker {
    margin-inline: auto;
  }

  .hero-section h1,
  .hero-section .hero-description {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-console {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .order-form-section {
    margin-top: -5rem;
  }

  .cookie-card {
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .navbar {
    padding: 0.65rem 0;
  }

  .navbar-brand .trust-wordmark {
    height: 30px;
    max-width: 130px;
    width: auto;
  }

  .hero-section {
    min-height: auto;
    padding-top: 4.5rem;
    padding-bottom: 6rem;
  }

  .hero-section h1 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .hero-section::before,
  .hero-section::after {
    display: none;
  }

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

  .hero-actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    padding-inline: 1rem;
  }

  .gmail-payment-strip {
    margin-top: -4rem;
    width: calc(100% - 1.5rem);
    gap: 0.35rem;
    padding: 0.6rem 0.5rem;
    border-radius: 14px;
  }

  .payment-logo {
    width: 48px;
    height: 34px;
  }

  .payment-logo-coinbase,
  .gmail-payment-strip .payment-logo-trustpilot {
    width: 76px;
  }

  .payment-logo-wallet {
    width: 84px;
  }

  .phone-showcase-inner.container {
    --bs-gutter-x: 0.75rem;
    max-width: 100%;
  }

  .phone-showcase-stage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.25rem, 2vw, 0.5rem);
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
  }

  .phone-mock,
  .phone-mock-center {
    max-width: 100%;
    width: 100%;
  }

  .phone-showcase-caption {
    padding-inline: 0.75rem;
    font-size: 0.88rem;
  }

  .how-it-works,
  .rewards-section {
    padding: 2rem 0;
    margin-top: 0;
  }

  .how-it-works .col-md-4 {
    padding: 1.25rem 1rem;
    background: #fff;
    border: 1px solid #dbe6f5;
    border-radius: 18px;
  }

  .how-it-works .col-md-4::after {
    display: none;
  }

  #how-it-works .how-step-col::after {
    display: none;
  }

  #how-it-works .how-step-col {
    padding: 1.25rem 1rem;
    background: #f8fbff;
    border: 1px solid #dbe6f5;
    border-radius: 18px;
  }

  .panel-section {
    padding: 2.5rem 0.75rem;
  }

  .panel-section > .container {
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
  }

  .faq-shell {
    padding: 0.8rem 0.75rem 0.9rem;
  }

  .faq-grid .faq-item {
    padding: 0.5rem 0.1rem;
  }

  .faq-grid .faq-item p {
    margin-left: 1.2rem;
  }

  .seo-article-section {
    padding: 2.5rem 0;
  }

  .seo-content {
    padding: 1.5rem 1.25rem;
    border-radius: 18px;
  }

  .seo-content h2 {
    font-size: 1.2rem;
  }

  .seo-content p {
    font-size: 0.94rem;
    overflow-wrap: anywhere;
  }

  #features {
    padding: 2.5rem 0 3.5rem !important;
  }

  .section-bridge {
    padding: 0.65rem 1rem;
  }

  .section-bridge-inner {
    width: min(200px, 65%);
  }

  .security-section {
    padding: 3rem 0;
  }

  .page-scroll {
    inset-block-end: 0.75rem;
    inset-inline-end: 0.75rem;
  }

  .page-scroll-btn {
    width: 42px;
    min-height: 42px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }

  .hero-section h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 1.05;
  }

  .hero-section .hero-description {
    font-size: 1rem;
  }

  .navbar-brand .trust-wordmark {
    height: 28px;
    max-width: 120px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 1rem;
    justify-items: start;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero-trust > span:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero-trust > span {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.35rem;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .hero-trust i {
    flex-shrink: 0;
    margin-right: 0;
  }

  .gmail-payment-strip {
    width: min(100%, calc(100% - 1rem));
    gap: 0.3rem;
    padding: 0.5rem 0.4rem;
    margin-top: -3rem;
  }

  .payment-logo {
    width: 42px;
    height: 30px;
    padding: 0.2rem;
  }

  .payment-logo img {
    max-height: 22px;
  }

  .payment-logo-wide {
    width: 62px;
  }

  .payment-logo-coinbase {
    width: 72px;
  }

  .payment-logo-wallet {
    width: 76px;
  }

  .payment-logo-coinbase img {
    width: 66px;
    max-height: 18px;
  }

  .payment-logo-wallet img {
    width: 68px;
  }

  .hero-console {
    padding: 0.9rem;
    border-radius: 20px;
  }

  .console-stock strong {
    font-size: 3.7rem;
  }

  .console-stats {
    grid-template-columns: 1fr;
  }

  .order-form-section > .container {
    padding: 1.4rem;
    border-radius: 20px;
  }

  .order-heading h2 {
    font-size: 2rem;
  }

  .how-it-works,
  .rewards-section {
    padding: 1.75rem 0;
    margin-top: 0;
  }

  .panel-section > .container {
    padding: 1.25rem 1rem;
    border-radius: 16px;
  }

  .seo-content {
    padding: 1.25rem 1rem;
    border-radius: 14px;
  }

  .read-more-btn {
    font-size: 0.9rem;
    min-height: 44px;
  }

  .pulse {
    right: 18px;
    bottom: 20px;
  }
}

/* Secure checkout logo alignment — 2026-08-14 */
.payment-logo-dmca img {
  width: 42px;
  max-width: 42px;
  max-height: 24px;
}
/* Checkout trust badges — 2026-08-14 */

.security-section {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  overflow: hidden;
}

.security-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(37, 99, 235, 0.08), transparent 70%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(37, 99, 235, 0.05), transparent 70%);
  pointer-events: none;
}

.security-section .container {
  position: relative;
  z-index: 1;
}

.security-section .section-heading {
  max-width: 720px;
  margin-inline: auto;
}

.security-section .section-lead {
  margin: 1rem auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.security-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  min-width: 0;
  padding: 1.6rem 1.15rem;
  background: #fff;
  border: 1px solid #dce6f5;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(16, 36, 88, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.security-badge:hover {
  transform: translateY(-3px);
  border-color: #93c5fd;
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.12);
}

.security-badge-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 1.2rem;
  line-height: 1;
  border: 1px solid var(--blue-100);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.1);
}

.security-badge-icon i {
  display: block;
  line-height: 1;
}

.security-badge-copy strong {
  display: block;
  color: var(--blue-950);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
  line-height: 1.35;
  margin-bottom: 0.35rem;
  overflow-wrap: anywhere;
}

.security-badge-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

@media (min-width: 992px) {
  .security-badges {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (max-width: 575px) {
  .security-badges {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 0;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .security-badges {
    gap: 0.85rem;
  }

  .security-badge {
    padding: 1.25rem 0.9rem;
  }
}

.faq-section {
  padding: clamp(2rem, 4vw, 2.75rem) 12px;
  background: #f8fbff;
  scroll-margin-top: 5.5rem;
}

.faq-section-inner {
  max-width: 1100px;
}

.faq-shell {
  position: relative;
  padding: 1.6rem 1.75rem 1.65rem;
  background: #fff;
  border: 1px solid #e2eaf5;
  border-radius: 22px;
  box-shadow: 0 10px 36px rgba(16, 36, 88, 0.05);
  overflow: hidden;
}

.faq-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #60a5fa 45%, #93c5fd);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: none;
  margin: 0;
}

.faq-grid .faq-item {
  margin: 0;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid #edf2f9;
  border-radius: 0;
  padding: 0.9rem 0.25rem;
  background: transparent;
  box-shadow: none;
  transition: background 0.2s ease;
}

.faq-grid .faq-item:last-child {
  border-bottom: 0;
}

.faq-grid .faq-item[open] {
  padding: 0.9rem 0.8rem;
  border-radius: 12px;
  background: #f5f9ff;
  border-bottom-color: transparent;
}

.faq-grid .faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--blue-950);
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.45;
  font-size: 1.1rem;
  min-width: 0;
}

.faq-grid .faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-num {
  font-size: 0.78rem;
  font-weight: 800;
  color: #93c5fd;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.faq-q {
  min-width: 0;
  overflow-wrap: anywhere;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--blue-600);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-grid .faq-item p {
  margin: 0.6rem 0 0 2rem;
  padding-bottom: 0.25rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.faq-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 1.25rem auto 0;
  padding: 0;
  text-align: center;
}

.faq-cta .hero-primary-btn {
  margin: 0 auto;
  min-width: min(100%, 220px);
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
  }

  .faq-grid .faq-item:nth-child(odd):not([open]) {
    border-right: 1px solid #edf2f9;
    padding-right: 1rem;
  }

  .faq-grid .faq-item:nth-child(even):not([open]) {
    padding-left: 1rem;
  }
}

@media (max-width: 767px) {
  .faq-shell {
    padding: 1.15rem 1.1rem 1.25rem;
  }

  .faq-grid .faq-item p {
    margin-left: 1.65rem;
    font-size: 0.94rem;
  }
}

.gmail-payment-strip .payment-logo-trustpilot {
  width: 88px;
  height: 40px;
}
.gmail-payment-strip .payment-logo-trustpilot img {
  width: 78px;
  max-width: 78px;
  max-height: 27px;
}
.gmail-payment-strip .payment-logo-dmca {
  width: 68px;
  height: 40px;
}
.gmail-payment-strip .payment-logo-dmca img {
  width: 56px;
  max-width: 56px;
  max-height: 28px;
}
@media (max-width: 576px) {
  .gmail-payment-strip .payment-logo-trustpilot { width: 68px; height: 34px; }
  .gmail-payment-strip .payment-logo-trustpilot img { width: 60px; max-height: 22px; }
  .gmail-payment-strip .payment-logo-dmca { width: 56px; height: 32px; }
  .gmail-payment-strip .payment-logo-dmca img { width: 48px; max-height: 22px; }
}

.tier-card {
  background: #fff;
  border: 1px solid #dce6f5;
  border-radius: 18px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.tier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(16, 36, 88, 0.1);
}

.tier-card.featured {
  border-color: #93c5fd;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.12);
}

.tier-tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* --- Rewards ladder (compact light) --- */
.rewards-section {
  padding: clamp(2.25rem, 4vw, 3rem) 0;
  width: 100%;
  background: #f8fbff;
  scroll-margin-top: 5.5rem;
}

.rewards-section-inner {
  width: 100%;
  max-width: 100%;
}

.rewards-lead {
  max-width: 560px;
  margin: 0.5rem auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.rewards-ladder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.rewards-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 0;
  width: 100%;
  min-width: 0;
  padding: 1rem 1rem 0.9rem;
  border: 1px solid #dbe6f5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 36, 88, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rewards-panel:hover {
  transform: translateY(-2px);
  border-color: #b8cff0;
  box-shadow: 0 14px 32px rgba(16, 36, 88, 0.08);
}

.rewards-panel-featured {
  border-color: #93c5fd;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
}

.rewards-panel-badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rewards-panel-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.rewards-panel-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  font-size: 0.72rem;
}

.rewards-panel-name {
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rewards-panel-rate {
  display: flex;
  align-items: flex-start;
  gap: 0.05rem;
  margin-bottom: 0.1rem;
  line-height: 1;
}

.rewards-panel-pct {
  color: var(--blue-950);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rewards-panel-featured .rewards-panel-pct {
  color: var(--blue-600);
}

.rewards-panel-pct-sym {
  margin-top: 0.3rem;
  color: var(--blue-500);
  font-size: 0.9rem;
  font-weight: 700;
}

.rewards-panel-sub {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.rewards-panel-perks {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #eef3fb;
  padding-top: 0.55rem;
}

.rewards-panel-perks li {
  position: relative;
  padding-left: 0.85rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.rewards-panel-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-500);
}

.rewards-panel-ultra .rewards-panel-pct {
  color: #b45309;
}

.rewards-panel-ultra .rewards-panel-icon {
  color: #b45309;
  background: #fffbeb;
  border-color: #fde68a;
}

@media (max-width: 991px) {
  .rewards-ladder {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    gap: 1rem;
  }

  .rewards-panel-featured {
    order: -1;
  }
}

@media (max-width: 575px) {
  .rewards-section {
    padding: 1.75rem 0 4.75rem;
  }

  .rewards-section-inner {
    padding-inline: 1rem;
  }

  .rewards-ladder {
    gap: 0.85rem;
  }

  .rewards-panel {
    padding: 1.05rem 1rem 0.95rem;
  }

  .rewards-panel-pct {
    font-size: 1.85rem;
  }

  .rewards-panel-perks li {
    font-size: 0.8rem;
  }
}

/* --- Subtle UX polish --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1101;
  pointer-events: none;
  background: transparent;
}

.scroll-progress::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-500));
  transform: scaleX(var(--progress, 0));
  transform-origin: left center;
  transition: transform 0.1s linear;
}

#how-it-works,
#features,
#rewards,
#faq {
  scroll-margin-top: 5.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 55ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 110ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 165ms; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 220ms; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 275ms; }

.faq-grid .faq-item[open] p {
  animation: faqReveal 0.28s ease;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.btn,
.navbar-apply-btn,
.page-scroll-btn,
.nav-link,
.dropdown-item,
.read-more-btn,
[data-open-connect] {
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-progress::after {
    transition: none;
  }

  .faq-grid .faq-item[open] p {
    animation: none;
  }

  .tier-card:hover {
    transform: none;
  }
}

/* Mobile hardening — full-width sections, safe padding */
@media (max-width: 767px) {
  .container,
  .rewards-section-inner,
  .faq-section-inner,
  .phone-showcase-inner,
  .security-section .container,
  #contact > .container {
    width: 100%;
    max-width: 100%;
    padding-inline: 1rem;
    box-sizing: border-box;
  }

  .panel-section {
    padding-inline: 0.75rem;
  }

  .panel-section > .container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .rewards-section,
  .security-section,
  .faq-section,
  .phone-showcase,
  .how-pay-section {
    width: 100%;
    box-sizing: border-box;
  }

  .page-scroll {
    inset-block-end: 0.85rem;
    inset-inline-end: 0.85rem;
    z-index: 40;
  }
}

/* === Final polish === */
.navbar-nav .nav-link {
  transition: color 0.2s ease, background 0.2s ease;
}

.faq-grid .faq-item summary {
  transition: color 0.2s ease;
}

.faq-grid .faq-item summary:hover {
  color: var(--blue-700);
}

.faq-grid .faq-item .faq-icon {
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.faq-grid .faq-item[open] .faq-icon {
  background: var(--blue-100);
  border-color: var(--blue-500);
}

.footer-col a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  transform: translateX(2px);
}

.hero-primary-btn,
.navbar-apply-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-primary-btn:active,
.navbar-apply-btn:active {
  transform: translateY(0) scale(0.98);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.read-more-btn {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.read-more-btn:hover {
  opacity: 0.82;
}

.page-scroll-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.page-scroll-btn:hover:not(:disabled) {
  transform: translateY(-2px);
}

.page-scroll-btn:active:not(:disabled) {
  transform: translateY(0) scale(0.96);
}

.scroll-progress::after {
  transition: transform 0.12s linear;
}