/* ==========================================================================
   JointPay — home.css
   Page-specific styles for home.html. Shared tokens, navbar, footer and
   the component layer (.container/.eyebrow/.card/.icon-box/.btn/.orb/...)
   live in core.css, which must be loaded first.
   ========================================================================== */

/* ==========================================================================
   Hero
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 96px 16px 0;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding: 96px 24px 0;
  }
}

.hero-ambient-glow {
  bottom: -100px;
  right: -50px;
  height: 500px;
  width: 500px;
  background: radial-gradient(ellipse, rgba(15, 45, 107, 0.25), transparent 70%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(249, 115, 22, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(15, 45, 107, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.7;
  pointer-events: none;
}

.hero-chip {
  position: absolute;
  z-index: 30;
  border-radius: 16px;
  border: 1px solid var(--color-white-transparent);
  background: var(--color-white-transparent);
  padding: 12px 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
}

@media (min-width: 1024px) {
  .hero-chip.chip-1 { display: block; left: 16%; top: 12%; }
  .hero-chip.chip-2 { display: block; left: 8%; top: 40%; }
  .hero-chip.chip-3 { display: block; right: 3%; top: 14%; }
  .hero-chip.chip-4 { display: block; right: 13%; top: 40%; }
}

.hero-chip-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-chip-icon {
  height: 20px;
  width: 20px;
}
.hero-chip-icon.orange { color: var(--color-orange); }
.hero-chip-icon.green { color: var(--color-green); }

.hero-chip-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
}

.hero-chip-desc {
  font-size: 11px;
  color: #d1d5db;
}

.hero-content {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  max-width: 1024px;
  width: 100%;
}

.hero-title {
  margin-top: 16px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .hero-title { font-size: 38px; }
}
@media (min-width: 768px) {
  .hero-title { font-size: 58px; }
}

.hero-title .orange-word {
  color: var(--color-orange);
}

.hero-subtitle {
  position: relative;
  z-index: 20;
  margin-top: 16px;
  max-width: 620px;
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
  padding: 0 8px;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 17px;
    line-height: 6px; /* Wait, Next.js page says: leading-[1.4] md:leading-6, which is 24px */
    line-height: 24px;
  }
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 448px;
}
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
}

.btn-hero-primary {
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
  background-color: var(--color-orange);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-hero-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 20px var(--color-orange-shadow);
}
.btn-hero-primary:active {
  transform: scale(0.97);
}

.hero-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transition: left 0.5s ease;
}
.btn-hero-primary:hover::after {
  left: 100%;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1.5px solid var(--color-white);
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  transition: background-color 0.25s, color 0.25s, transform 0.25s;
}
.btn-hero-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
  transform: scale(1.04);
}
.btn-hero-secondary:active {
  transform: scale(0.97);
}

.hero-stats-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: var(--color-white);
  font-weight: 500;
}
@media (min-width: 640px) {
  .hero-stats-row { gap: 32px; }
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 640px) {
  .hero-stat-item { gap: 16px; }
}

.hero-stat-divider {
  display: block;
  height: 36px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-orange);
}
@media (min-width: 768px) {
  .hero-stat-number { font-size: 28px; }
}

.hero-stat-label {
  font-size: 11px;
  color: #9ca3af;
}
@media (min-width: 768px) {
  .hero-stat-label { font-size: 12px; }
}

.hero-mockups-area {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 24px auto 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 340px;
  padding: 0 16px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-mockups-area { height: 380px; }
}
@media (min-width: 768px) {
  .hero-mockups-area { height: 520px; }
}

.hero-mockup-frame {
  position: absolute;
  z-index: 10;
  width: 95px;
  height: 125px;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform-origin: bottom;
  display: none;
}
.hero-mockup-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.hero-mockup-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-mockup-frame {
    width: 240px;
    height: 260px;
  }
}

.hero-mockup-frame.frame-0 {
  display: block;
  left: 3%;
  bottom: 20px;
  transform: rotate(-10deg);
  border: 1px solid var(--color-white-transparent);
}
@media (min-width: 1024px) {
  .hero-mockup-frame.frame-0 { left: 3%; }
}

.hero-mockup-frame.frame-1 {
  display: block;
  left: 45%;
  bottom: 80px;
  transform: rotate(-8deg);
  border: 1px solid var(--color-white-border);
}
@media (min-width: 1024px) {
  .hero-mockup-frame.frame-1 { left: 22%; }
}

.hero-mockup-frame.frame-2 {
  display: block;
  right: 18%;
  bottom: 80px;
  transform: rotate(8deg);
  border: 1px solid var(--color-white-border);
}
@media (min-width: 1024px) {
  .hero-mockup-frame.frame-2 { right: 22%; }
}

.hero-mockup-frame.frame-3 {
  display: block;
  right: 3%;
  bottom: 20px;
  transform: rotate(10deg);
  border: 1px solid var(--color-white-transparent);
}
@media (min-width: 1024px) {
  .hero-mockup-frame.frame-3 { right: 3%; }
}

/* Hide some flanking screens on mobile */
@media (max-width: 767px) {
  .hero-mockup-frame.frame-0 { display: none; }
  .hero-mockup-frame.frame-3 { display: none; }
}
@media (max-width: 639px) {
  .hero-mockup-frame.frame-1 { display: none; }
  .hero-mockup-frame.frame-2 { display: none; }
}

.hero-main-phone {
  position: relative;
  z-index: 20;
  width: 320px;
  height: 500px;
  top: 55%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-main-phone {
    width: 340px;
    height: 650px;
    top: 20%;
  }
}

.hero-main-phone img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ==========================================================================
   Partner logos
   ========================================================================== */
.partners-section {
  background-color: var(--color-white);
  padding: 64px 16px;
  border-bottom: 1px solid var(--color-blue-border);
  overflow: hidden;
}
@media (min-width: 768px) {
  .partners-section {
    padding: 80px 24px;
  }
}

.partners-header {
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .partners-header {
    margin-bottom: 64px;
  }
}

.partners-title {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 800;
  color: var(--color-blue);
  letter-spacing: -0.025em;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .partners-title {
    font-size: 36px;
    margin-top: 16px;
  }
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .partners-grid {
    gap: 24px;
  }
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid var(--color-blue-border);
  background-color: var(--color-blue-light);
  filter: grayscale(100%);
  transition: filter 0.5s ease, background-color 0.5s ease, transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
@media (min-width: 768px) {
  .partner-logo-card {
    min-width: 170px;
    padding: 22px 32px;
    border-radius: 24px;
  }
}

.partner-logo-card:hover {
  filter: grayscale(0%);
  background-color: var(--color-white);
  transform: translateY(-4px);
}

.partner-logo-card.npci:hover {
  border-color: rgba(0, 168, 89, 0.3);
  box-shadow: 0 15px 35px rgba(0, 168, 89, 0.15);
}
.partner-logo-card.sbi:hover {
  border-color: rgba(0, 163, 224, 0.3);
  box-shadow: 0 15px 35px rgba(0, 163, 224, 0.15);
}
.partner-logo-card.icici:hover {
  border-color: rgba(243, 112, 33, 0.3);
  box-shadow: 0 15px 35px rgba(243, 112, 33, 0.15);
}
.partner-logo-card.hdfc:hover {
  border-color: rgba(0, 75, 141, 0.3);
  box-shadow: 0 15px 35px rgba(0, 75, 141, 0.15);
}
.partner-logo-card.axis:hover {
  border-color: rgba(151, 20, 77, 0.3);
  box-shadow: 0 15px 35px rgba(151, 20, 77, 0.15);
}
.partner-logo-card.airtel:hover {
  border-color: rgba(228, 0, 0, 0.3);
  box-shadow: 0 15px 35px rgba(228, 0, 0, 0.15);
}

.partner-logo-img,
.partner-brand-svg {
  height: 28px;
  width: auto;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .partner-logo-img,
  .partner-brand-svg {
    height: 32px;
  }
}
.partner-logo-card:hover .partner-logo-img,
.partner-logo-card:hover .partner-brand-svg {
  transform: scale(1.05);
}

/* ==========================================================================
   Feature tabs
   ========================================================================== */
.features-section {
  position: relative;
  overflow: hidden;
  background-color: #F8FAFF;
  padding: 80px 24px;
}
@media (min-width: 768px) {
  .features-section {
    padding: 100px 80px;
  }
}

.features-top-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-orange), var(--color-blue), transparent);
}

.features-ambient-orb {
  right: -200px;
  top: -200px;
  height: 600px;
  width: 600px;
  background: radial-gradient(ellipse, rgba(15, 45, 107, 0.05), transparent 70%);
}

.features-header {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.features-title {
  margin-top: 16px;
  font-size: 34px;
  font-weight: 800;
  color: var(--color-blue);
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .features-title { font-size: 46px; }
}

.features-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-orange), rgba(249, 115, 22, 0.3));
}

.features-desc {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #6B7280;
}
@media (min-width: 768px) {
  .features-desc { font-size: 17px; }
}

.tabs-bar {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  overflow-x: auto;
  gap: 8px;
  padding-bottom: 6px;
  margin-bottom: 48px;
  scrollbar-width: none;
}
.tabs-bar::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  position: relative;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #6B7280;
  transition: all 0.3s;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .tab-btn { font-size: 15px; }
}
.tab-btn:hover {
  color: var(--color-blue);
}
.tab-btn.active {
  color: var(--color-orange);
}
.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background-color: var(--color-orange);
}

.feature-tab-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.feature-tab-panel.active {
  display: grid;
}
@media (min-width: 1024px) {
  .feature-tab-panel {
    grid-template-columns: 45fr 55fr;
  }
}

.feature-info-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 9999px;
  border: 1px solid rgba(249, 115, 22, 0.25);
  background-color: rgba(249, 115, 22, 0.06);
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-orange);
  width: fit-content;
}

.feature-info-title {
  margin-top: 20px;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-blue);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .feature-info-title { font-size: 38px; }
}

.feature-info-desc {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #6B7280;
}
@media (min-width: 768px) {
  .feature-info-desc { font-size: 16px; }
}

.feature-stats-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.feature-stat-card {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background-color: var(--color-white);
  padding: 12px 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  min-width: 130px;
}

.feature-stat-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-blue);
  line-height: 1;
}
@media (min-width: 768px) {
  .feature-stat-val { font-size: 22px; }
}

.feature-stat-lbl {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.btn-feature-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  background-color: var(--color-blue);
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  width: fit-content;
}
.btn-feature-cta:hover {
  background-color: var(--color-orange);
}
.btn-feature-cta:active {
  transform: scale(0.95);
}

.feature-showcase-container {
  position: relative;
  border-radius: 32px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 340px;
  border: 1px solid transparent;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .feature-showcase-container {
    padding: 32px;
    height: 420px;
  }
}

.feature-showcase-container.accent-orange {
  background-color: rgba(249, 115, 22, 0.03);
  border-color: rgba(249, 115, 22, 0.14);
}
.feature-showcase-container.accent-blue {
  background-color: rgba(15, 45, 107, 0.03);
  border-color: rgba(15, 45, 107, 0.09);
}

.feature-showcase-bg-orb {
  width: 250px;
  height: 250px;
  filter: blur(60px);
  opacity: 0.4;
  bottom: -40px;
  right: -40px;
}
.feature-showcase-container.accent-orange .feature-showcase-bg-orb {
  background-color: var(--color-orange);
}
.feature-showcase-container.accent-blue .feature-showcase-bg-orb {
  background-color: var(--color-blue);
}

.npci-trust-bar {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-radius: 24px;
  border: 1px solid rgba(15, 45, 107, 0.08);
  background-color: var(--color-white);
  padding: 28px 32px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .npci-trust-bar {
    flex-direction: row;
    align-items: center;
  }
}

.npci-trust-text {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-blue);
}

.npci-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.npci-pill {
  border-radius: 9999px;
  border: 1px solid rgba(15, 45, 107, 0.08);
  background-color: #F8FAFF;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-blue);
}

.npci-certified-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-blue);
}
.npci-certified-icon {
  height: 22px;
  width: 22px;
  color: #22C55E;
}

.mockup-card {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  background-color: var(--color-white);
  padding: 22px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mockup-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-blue);
  padding: 0 2px;
}
@media (min-width: 768px) {
  .mockup-title { font-size: 17px; }
}

.mockup-flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #f9fafb;
  border-radius: 12px;
  padding: 12px;
  background-color: rgba(249, 250, 251, 0.5);
}

.mockup-avatar-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  background-color: #fff7ed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-avatar-wrapper.blue-bg {
  background-color: #eff6ff;
}

.mockup-avatar-icon {
  width: 20px;
  height: 20px;
}
.mockup-avatar-icon.orange-text { color: var(--color-orange); }
.mockup-avatar-icon.blue-text { color: var(--color-blue); }

.mockup-name-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-blue);
}
@media (min-width: 768px) {
  .mockup-name-title { font-size: 13px; }
}

.mockup-name-subtitle {
  font-size: 10px;
  color: #6b7280;
  font-weight: 500;
}
@media (min-width: 768px) {
  .mockup-name-subtitle { font-size: 11px; }
}

.mockup-status-badge {
  border-radius: 9999px;
  background-color: #ecfdf5;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  color: #059669;
  border: 1px solid #d1fae5;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
@media (min-width: 768px) {
  .mockup-status-badge { font-size: 11px; }
}

.mockup-badge-icon {
  width: 12px;
  height: 12px;
}

.mockup-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .mockup-grid-2x2 { font-size: 12px; }
}

.mockup-grid-item {
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-blue);
}
.mockup-grid-item.active {
  background-color: rgba(249, 115, 22, 0.04);
  border-color: #ffedd5;
}

.mockup-grid-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: var(--color-blue);
}
.mockup-grid-dot.orange-dot {
  background-color: var(--color-orange);
}

.mockup-success-badge-large {
  margin: 4px auto 0;
  border-radius: 9999px;
  background-color: #ecfdf5;
  border: 1px solid #d1fae5;
  color: #047857;
  font-size: 12.5px;
  font-weight: 800;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}
@media (min-width: 768px) {
  .mockup-success-badge-large {
    font-size: 13.5px;
  }
}

.mockup-transfer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 10;
  padding: 0 16px;
  width: 100%;
}

.mockup-transfer-card {
  flex: 1;
  border-radius: 16px;
  border: 1px solid #ffffff;
  background-color: var(--color-white);
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-transfer-amount {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-blue);
}
@media (min-width: 768px) {
  .mockup-transfer-amount { font-size: 20px; }
}

.mockup-transfer-line-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 44px;
  justify-content: center;
}

.mockup-transfer-line-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .mockup-transfer-line-tag { font-size: 12.5px; }
}

.mockup-transfer-bar {
  width: 100%;
  height: 6px;
  background-color: #e5e7eb;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
}
.mockup-transfer-bar-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-orange);
  border-radius: 9999px;
}

.mockup-list-scrollable {
  height: 200px;
  overflow-y: auto;
  scrollbar-width: none;
}
.mockup-list-scrollable::-webkit-scrollbar {
  display: none;
}

.mockup-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f9fafb;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.mockup-list-row:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.mockup-list-btn {
  border-radius: 9999px;
  background-color: #fff7ed;
  border: 1px solid #ffedd5;
  padding: 4px 14px;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--color-orange);
  transition: all 0.2s;
}
.mockup-list-btn:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
}
@media (min-width: 768px) {
  .mockup-list-btn { font-size: 11.5px; }
}

.mockup-operator-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mockup-op-card {
  flex: 1;
  border: 1px solid #f3f4f6;
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .mockup-op-card { font-size: 11px; }
}
.mockup-op-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
}

.mockup-chips-row {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 4px 0;
}
.mockup-chip {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 6px 12px;
  font-size: 10.5px;
  font-weight: 800;
  color: #6B7280;
  background-color: var(--color-white);
}
.mockup-chip.active {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .mockup-chip { font-size: 11.5px; }
}

.mockup-pin-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px solid #f9fafb;
  border-radius: 12px;
  padding: 10px;
  background-color: rgba(249, 250, 251, 0.5);
}
.mockup-pin-label {
  font-size: 10px;
  color: #9ca3af;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .mockup-pin-label { font-size: 11px; }
}

.mockup-pin-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.mockup-pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  border: 1px solid #d1d5db;
}
.mockup-pin-dot.filled {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
}

.mockup-credit-card {
  border-radius: 12px;
  background: linear-gradient(to right, #2563eb, #3730a3);
  padding: 16px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 95px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.mockup-credit-card-glow {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.mockup-credit-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup-credit-card-top-icon {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.9);
}
.mockup-credit-card-tag {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 2px;
  opacity: 0.75;
}
@media (min-width: 768px) {
  .mockup-credit-card-tag { font-size: 10.5px; }
}

.mockup-credit-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup-credit-card-number {
  font-size: 14px;
  font-family: monospace;
  letter-spacing: 0.15em;
}
@media (min-width: 768px) {
  .mockup-credit-card-number { font-size: 16px; }
}
.mockup-credit-card-logo {
  font-size: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .mockup-credit-card-logo { font-size: 11px; }
}

.mockup-insurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .mockup-insurance-grid { font-size: 12px; }
}

.mockup-insurance-card {
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 10px;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
}

.mockup-insurance-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 8.5px;
  font-weight: 700;
  color: #059669;
  background-color: #ecfdf5;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #d1fae5;
}
@media (min-width: 768px) {
  .mockup-insurance-tag { font-size: 9.5px; }
}

.mockup-insurance-avatar {
  width: 30px;
  height: 30px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-insurance-avatar.red { background-color: #fef2f2; color: #ef4444; }
.mockup-insurance-avatar.green { background-color: #ecfdf5; color: #10b981; }
.mockup-insurance-avatar.blue { background-color: #eff6ff; color: #3b82f6; }
.mockup-insurance-avatar.purple { background-color: #faf5ff; color: #a855f7; }

.mockup-insurance-name {
  color: var(--color-blue);
  font-weight: 700;
  font-size: 12px;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .mockup-insurance-name { font-size: 13px; }
}

.mockup-pan-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 0;
  font-size: 9px;
  font-weight: 700;
  color: #9ca3af;
}
@media (min-width: 768px) {
  .mockup-pan-timeline { font-size: 10px; }
}

.mockup-timeline-item {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.mockup-timeline-item:last-child {
  flex: none;
}

.mockup-timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mockup-timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
  font-weight: 800;
  border: 1px solid #e5e7eb;
  background-color: var(--color-white);
  color: #9ca3af;
}
.mockup-timeline-node.active .mockup-timeline-dot {
  background-color: #fff7ed;
  border-color: #fed7aa;
  color: var(--color-orange);
}

.mockup-timeline-label {
  color: #9ca3af;
}
.mockup-timeline-node.active .mockup-timeline-label {
  color: var(--color-blue);
}

.mockup-timeline-line {
  height: 1px;
  flex: 1;
  margin-bottom: 14px;
  background-color: #e5e7eb;
}
.mockup-timeline-line.active {
  background-color: var(--color-orange);
}

/* ==========================================================================
   Canvas showcase
   ========================================================================== */
.canvas-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .canvas-section {
    padding: 100px 48px;
  }
}

.canvas-mesh-blob {
  height: 420px;
  width: 420px;
  filter: blur(80px);
}
.canvas-mesh-blob-1 {
  left: -10%;
  top: 10%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08), transparent 70%);
}
.canvas-mesh-blob-2 {
  left: 50%;
  top: 40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03), transparent 70%);
}
.canvas-mesh-blob-3 {
  right: -10%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08), transparent 70%);
}

.canvas-header {
  text-align: center;
  z-index: 10;
  margin-bottom: 48px;
  width: 100%;
}
.canvas-title {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 800;
  color: var(--color-white);
}
@media (min-width: 768px) {
  .canvas-title { font-size: 36px; }
}

.canvas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 1152px;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .canvas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.canvas-phone-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.canvas-phone-frame {
  width: 180px;
  height: 370px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  background-color: #000;
}
@media (min-width: 768px) {
  .canvas-phone-frame {
    width: 300px;
    height: 620px;
    border-radius: 50px;
  }
}

.canvas-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.canvas-mockup-img.active {
  display: block;
}

.canvas-pills-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.canvas-pill {
  border-radius: 9999px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  background-color: rgba(249, 115, 22, 0.15);
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 500;
  color: var(--color-orange);
}
@media (min-width: 768px) {
  .canvas-pill { font-size: 12px; padding: 6px 16px; }
}

.canvas-panels-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px;
}

.canvas-text-panel {
  display: none;
}
.canvas-text-panel.active {
  display: block;
}

.canvas-panel-tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.canvas-panel-indicator-line {
  height: 20px;
  width: 2px;
  background-color: var(--color-orange);
}
.canvas-panel-tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-orange);
}
@media (min-width: 768px) {
  .canvas-panel-tag { font-size: 11px; }
}

.canvas-panel-heading {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .canvas-panel-heading { font-size: 42px; }
}

.canvas-panel-body {
  margin-top: 16px;
  max-width: 380px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}
@media (min-width: 768px) {
  .canvas-panel-body { font-size: 15px; line-height: 1.75; }
}

.canvas-panel-stats-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .canvas-panel-stats-grid { gap: 16px; margin-top: 32px; }
}

.canvas-stat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px 16px;
}
@media (min-width: 768px) {
  .canvas-stat-card { gap: 12px; padding: 14px 20px; }
}

.canvas-stat-icon {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
  flex-shrink: 0;
}

.canvas-stat-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
}
@media (min-width: 768px) {
  .canvas-stat-value { font-size: 16px; }
}

.canvas-stat-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .canvas-stat-label { font-size: 12px; }
}

.canvas-dots-nav {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1024px) {
  .canvas-dots-nav { display: flex; }
}

.canvas-nav-dot {
  position: relative;
  height: 12px;
  width: 12px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.canvas-nav-dot.active {
  background-color: var(--color-orange);
}

/* ==========================================================================
   How it works
   ========================================================================== */
.stepper-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
  padding: 64px 16px;
}
@media (min-width: 768px) {
  .stepper-section {
    padding: 96px 80px;
  }
}

.stepper-ambient-1 {
  left: -150px;
  top: -150px;
  height: 600px;
  width: 600px;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.03), transparent 65%);
}
.stepper-ambient-2 {
  right: -150px;
  bottom: -150px;
  height: 600px;
  width: 600px;
  background: radial-gradient(ellipse, rgba(15, 45, 107, 0.03), transparent 65%);
}
.stepper-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--color-blue-light) 1px, transparent 1px),
                    linear-gradient(90deg, var(--color-blue-light) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.8;
  pointer-events: none;
}
.stepper-top-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(circle at top center, var(--color-orange-light), transparent 70%);
  pointer-events: none;
}

.stepper-header {
  max-width: 560px;
  margin: 0 auto 64px;
  text-align: center;
}

.stepper-title {
  margin-top: 16px;
  font-size: 30px;
  font-weight: 800;
  color: var(--color-blue);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
@media (min-width: 640px) { .stepper-title { font-size: 36px; } }
@media (min-width: 1024px) { .stepper-title { font-size: 46px; } }

.stepper-desc {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}
@media (min-width: 640px) { .stepper-desc { font-size: 16px; } }
@media (min-width: 768px) { .stepper-desc { font-size: 17px; } }

.stepper-relative {
  position: relative;
}

.stepper-desktop-line {
  position: absolute;
  left: 12.5%;
  top: 24px;
  width: 75%;
  display: none;
}
@media (min-width: 768px) {
  .stepper-desktop-line { display: block; }
}

.stepper-cards-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .stepper-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .stepper-cards-grid { grid-template-columns: repeat(4, 1fr); }
}

.stepper-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-blue-border);
  border-radius: 16px;
  padding: 32px 24px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.stepper-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary-border);
  box-shadow: 0 12px 32px rgba(15, 45, 107, 0.04);
}

.stepper-number-bubble {
  z-index: 10;
  display: flex;
  height: 48px;
  width: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid #e5e7eb;
  background-color: var(--color-white);
  font-size: 15px;
  font-weight: 750;
  color: #9ca3af;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.stepper-card:hover .stepper-number-bubble {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.stepper-icon-box {
  z-index: 10;
  margin-top: 24px;
  display: flex;
  height: 52px;
  width: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid #ffedd5;
  background-color: rgba(254, 243, 199, 0.5);
  color: var(--color-orange);
  transition: transform 0.3s;
}
.stepper-card:hover .stepper-icon-box {
  transform: scale(1.1) rotate(3deg);
}

.stepper-card-title {
  z-index: 10;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-blue);
}

.stepper-card-body {
  z-index: 10;
  margin-top: 8px;
  max-width: 200px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.stepper-card-badge {
  z-index: 10;
  margin-top: 20px;
  border-radius: 9999px;
  border: 1px solid var(--color-primary-border);
  background-color: var(--color-orange-light);
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-orange);
}

.stepper-bottom-cta {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 10;
  position: relative;
}

.stepper-cta-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .stepper-cta-flex {
    flex-direction: row;
  }
}

.stepper-cta-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-blue);
}
@media (min-width: 640px) {
  .stepper-cta-text { font-size: 20px; }
}

.btn-stepper-partner {
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
  background-color: var(--color-orange);
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  box-shadow: 0 4px 6px rgba(249, 115, 22, 0.25);
  min-height: 44px;
}

.stepper-cta-subtext {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}

/* ==========================================================================
   Trusted stats
   ========================================================================== */
.trusted-section {
  position: relative;
  overflow: hidden;
  padding: 64px 16px 48px;
}
@media (min-width: 640px) {
  .trusted-section {
    padding: 96px 24px 80px;
  }
}

.trusted-ambient-1 {
  right: -200px;
  top: -200px;
  height: 600px;
  width: 600px;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.08), transparent 70%);
}
.trusted-ambient-2 {
  left: -200px;
  bottom: -200px;
  height: 600px;
  width: 600px;
  background: radial-gradient(ellipse, rgba(15, 45, 107, 0.15), transparent 70%);
}

.trusted-container {
  position: relative;
  max-width: 1152px;
  margin: 0 auto;
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .trusted-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
  }
}

.trusted-left {
  max-width: 560px;
  text-align: center;
}
@media (min-width: 768px) {
  .trusted-left {
    text-align: left;
  }
}

.trusted-title {
  margin-top: 16px;
  font-size: 30px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
@media (min-width: 640px) { .trusted-title { font-size: 36px; } }
@media (min-width: 768px) { .trusted-title { font-size: 48px; } }

.trusted-desc {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #d1d5db;
}
@media (min-width: 640px) { .trusted-desc { font-size: 16px; } }
@media (min-width: 768px) { .trusted-desc { font-size: 17px; } }

.trusted-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
@media (min-width: 768px) {
  .trusted-right {
    width: auto;
    flex-direction: row;
    gap: 40px;
  }
}

.trusted-divider {
  display: none;
  height: 80px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  .trusted-divider { display: block; }
}

.trusted-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
  text-align: center;
}
@media (min-width: 640px) {
  .trusted-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .trusted-stats-grid {
    display: flex;
    text-align: left;
    gap: 40px;
  }
}

.trusted-stat-card {
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .trusted-stat-card {
    align-items: flex-start;
  }
}

.trusted-stat-value {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-white);
}
@media (min-width: 640px) { .trusted-stat-value { font-size: 36px; } }
@media (min-width: 768px) { .trusted-stat-value { font-size: 44px; } }

.trusted-stat-label {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #9ca3af;
}
@media (min-width: 768px) { .trusted-stat-label { font-size: 14px; } }

.sphere-mask {
  pointer-events: none;
  position: relative;
  z-index: 10;
  margin: -300px auto -352px;
  height: 672px;
  width: 100%;
  overflow: hidden;
  mask-image: radial-gradient(ellipse at center center, #000, transparent 50%);
  -webkit-mask-image: radial-gradient(ellipse at center center, #000, transparent 50%);
}
.sphere-mask::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  opacity: 0.4;
  background-image: radial-gradient(circle at bottom center, #000, transparent 70%);
}
.sphere-mask::after {
  content: "";
  position: absolute;
  left: -50%;
  top: 50%;
  aspect-ratio: 1.428;
  width: 200%;
  border-radius: 50%;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .testimonials-section {
    padding: 100px 48px;
  }
}

.testimonials-header {
  max-width: 560px;
  margin: 0 auto 64px;
  text-align: center;
}

.testimonials-title {
  margin-top: 16px;
  font-size: 30px;
  font-weight: 800;
  color: var(--color-blue);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
@media (min-width: 640px) { .testimonials-title { font-size: 36px; } }
@media (min-width: 1024px) { .testimonials-title { font-size: 46px; } }

.testimonials-title .orange-text {
  color: var(--color-orange);
}

.testimonials-desc {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}
@media (min-width: 640px) { .testimonials-desc { font-size: 16px; } }
@media (min-width: 768px) { .testimonials-desc { font-size: 17px; } }

.testimonials-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  width: 100%;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  background-color: var(--color-white);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  border-color: var(--color-primary-border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.testimonial-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-blue);
  text-align: left;
}

.testimonial-desc .orange-badge {
  padding: 2px 4px;
  font-weight: 700;
  color: var(--color-orange);
  background-color: rgba(249, 115, 22, 0.1);
  border-radius: 4px;
  margin: 0 2px;
  display: inline-block;
  font-size: 13.5px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid #f3f4f6;
}

.testimonial-author-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author-img {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
}

.testimonial-author-name {
  font-weight: 700;
  color: var(--color-blue);
  font-size: 13px;
  line-height: 1.2;
  text-align: left;
}

.testimonial-author-meta {
  font-size: 10.5px;
  font-weight: 500;
  color: #6b7280;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-star-icon {
  width: 12px;
  height: 12px;
  color: var(--color-orange);
  fill: var(--color-orange);
}

/* ==========================================================================
   Closing CTA
   ========================================================================== */
.cta-section {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 48px 24px;
  box-shadow: 0 40px 100px rgba(15, 45, 107, 0.3);
  margin: 0 16px 48px;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 80px 80px;
    margin: 0 80px 80px;
  }
}

.cta-ambient-glow {
  right: -80px;
  top: -80px;
  height: 400px;
  width: 400px;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.2), transparent 65%);
}
.cta-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-ring-overlay {
  bottom: -80px;
  left: -80px;
  height: 300px;
  width: 300px;
  border: 1.5px solid rgba(249, 115, 22, 0.15);
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
}
@media (min-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1fr auto;
  }
}

.cta-left {
  text-align: center;
}
@media (min-width: 1024px) {
  .cta-left {
    text-align: left;
  }
}

.cta-title {
  margin-top: 16px;
  font-size: 30px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) { .cta-title { font-size: 36px; } }
@media (min-width: 1024px) { .cta-title { font-size: 44px; } }

.cta-desc {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .cta-desc {
    margin-left: 0;
    margin-right: 0;
  }
}

.cta-pills-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 1024px) {
  .cta-pills-row {
    justify-content: flex-start;
  }
}

.cta-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.cta-pill-icon {
  height: 16px;
  width: 16px;
  color: var(--color-orange);
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .cta-right {
    margin: 0;
  }
}

.btn-cta-primary {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background-color: var(--color-orange);
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.4);
  text-align: center;
  transition: transform 0.25s;
}
.btn-cta-primary:hover {
  transform: scale(1.03);
}

.btn-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  transition: background-color 0.25s, transform 0.25s;
}
.btn-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.cta-disclaimer {
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
}
