:root {
  --ink: #10202a;
  --muted: #657482;
  --line: #dfe7ea;
  --surface: #ffffff;
  --soft: #f4f8f7;
  --navy: #0e2533;
  --teal: #00a985;
  --teal-dark: #007d68;
  --coral: #ff6b5f;
  --amber: #f5b942;
  --blue: #2f6fed;
  --shadow: 0 24px 70px rgba(14, 37, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fbfdfc;
  overflow-x: hidden;
}

.top-strip {
  background: var(--navy);
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.65rem 0;
}

.top-strip a,
.top-strip span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.top-links,
.top-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.reference-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.reference-nav .nav-link {
  color: var(--ink);
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}

.reference-nav .nav-link.active,
.reference-nav .nav-link:hover {
  color: var(--teal-dark);
}

.reference-hero {
  background: linear-gradient(135deg, #f5fbf9 0%, #ffffff 48%, #eaf8f4 100%);
  padding: 5.5rem 0;
}

.reference-hero h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  line-height: 0.98;
}

.reference-hero p,
.lead-text {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-image-frame {
  border: 10px solid #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image-frame img,
.rounded-service-img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.rounded-service-img {
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(14, 37, 51, 0.12);
  min-height: 420px;
}

.contact-info-strip {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.info-tile {
  align-items: start;
  background: #ffffff;
  border: 1px solid var(--line);
  display: grid;
  gap: 0.2rem 1rem;
  grid-template-columns: auto 1fr;
  min-height: 132px;
  padding: 1.4rem;
}

.info-tile i {
  align-items: center;
  background: var(--teal);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-size: 1.25rem;
  grid-row: span 2;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.info-tile span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-tile strong {
  line-height: 1.45;
}

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

.process-section {
  background: var(--soft);
  padding: 6rem 0;
}

.process-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 100%;
  padding: 1.5rem;
  text-align: center;
}

.process-card b {
  align-items: center;
  background: var(--teal);
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  font-size: 1.5rem;
  height: 62px;
  justify-content: center;
  margin-bottom: 1.2rem;
  width: 62px;
}

.process-card h3 {
  font-size: 1.18rem;
}

.process-card p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.feature-list li {
  color: var(--muted);
  line-height: 1.6;
  padding-left: 2rem;
  position: relative;
}

.feature-list li::before {
  align-items: center;
  background: var(--teal);
  border-radius: 50%;
  color: #ffffff;
  content: "\F26E";
  display: inline-flex;
  font-family: "bootstrap-icons";
  font-size: 0.8rem;
  height: 22px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0.12rem;
  width: 22px;
}

.stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid div {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(14, 37, 51, 0.08);
  padding: 2rem;
  text-align: center;
}

.stats-grid strong {
  color: var(--teal-dark);
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 800;
}

.reference-footer {
  background: var(--navy);
  color: #ffffff;
  padding: 4rem 0 1.5rem;
}

.reference-footer h4 {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.reference-footer p,
.reference-footer a {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  margin-bottom: 0.65rem;
}

.newsletter-form {
  display: grid;
  gap: 0.8rem;
}

.newsletter-form .form-control {
  border: 0;
  border-radius: 8px;
  min-height: 50px;
}

.login-section {
  background: linear-gradient(135deg, #f5fbf9 0%, #ffffff 52%, #eaf8f4 100%);
  padding: 6rem 0;
}

.login-section h1 {
  color: var(--ink);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
}

.login-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-left: auto;
  max-width: 500px;
  padding: 2rem;
}

.login-icon {
  align-items: center;
  background: var(--teal);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-size: 1.6rem;
  height: 58px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 58px;
}

.login-card h2 {
  font-size: 2rem;
}

.login-card p,
.login-help {
  color: var(--muted);
}

.login-card .form-label {
  color: var(--ink);
  font-weight: 800;
}

.login-card .form-control {
  border-color: var(--line);
  border-radius: 8px;
  min-height: 52px;
}

.login-options {
  align-items: center;
  color: var(--muted);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0.5rem 0 1.25rem;
}

.login-options a,
.login-help a {
  color: var(--teal-dark);
  font-weight: 800;
}

.login-help {
  display: block;
  font-weight: 700;
  margin-top: 1rem;
  text-align: center;
}

a {
  text-decoration: none;
}

.navbar {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(223, 231, 234, 0.72);
  backdrop-filter: blur(18px);
}

.navbar-brand,
.footer-brand {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.nav-link {
  color: #52616e;
  font-weight: 700;
}

.nav-link:hover,
.nav-login {
  color: var(--ink);
}

.nav-link.active,
.nav-login.active {
  color: var(--teal-dark);
}

.btn {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  gap: 0.55rem;
  justify-content: center;
  letter-spacing: 0;
  min-height: 44px;
  padding: 0.72rem 1.15rem;
}

.btn-primary {
  background: var(--teal);
  border-color: var(--teal);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(0, 169, 133, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.46);
  color: #ffffff;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: var(--ink);
}

.btn-outline-primary {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.btn-outline-primary:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.hero-section {
  background:
    linear-gradient(130deg, rgba(14, 37, 51, 0.98), rgba(16, 61, 71, 0.94) 48%, rgba(0, 120, 106, 0.88)),
    url("https://images.unsplash.com/photo-1553729459-efe14ef6055d?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: #ffffff;
  min-height: 92vh;
  padding: 9rem 0 5rem;
}

.subpage-hero {
  background:
    linear-gradient(135deg, rgba(14, 37, 51, 0.98), rgba(9, 93, 92, 0.92)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1600&q=80") center / cover;
  color: #ffffff;
  padding: 9rem 0 5rem;
}

.subpage-hero .container {
  max-width: 960px;
}

.subpage-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.95;
}

.subpage-hero p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.7;
  max-width: 720px;
}

.eyebrow {
  color: #8be4d0;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: 0.88;
  margin-bottom: 1.35rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.7;
  max-width: 620px;
}

.hero-actions {
  margin: 2rem 0 2.6rem;
}

.hero-proof {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
}

.hero-proof div {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  padding-left: 1rem;
}

.hero-proof strong {
  display: block;
  font-size: 1.35rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.68);
  display: block;
  font-size: 0.86rem;
}

.product-shell {
  background: rgba(246, 250, 249, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  margin-left: auto;
  max-width: 590px;
  overflow: hidden;
}

.product-topbar {
  align-items: center;
  background: #f1f5f5;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 0.45rem;
  height: 42px;
  padding: 0 1rem;
}

.product-topbar span {
  background: #c9d4d8;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.dashboard-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
  padding: 1rem;
}

.balance-panel,
.card-panel,
.activity-panel,
.fx-panel,
.feature-card,
.metric-card,
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.balance-panel {
  padding: 1.25rem;
}

.panel-kicker,
.panel-title,
.flow-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.balance-amount {
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  font-weight: 900;
  margin-top: 0.55rem;
}

.balance-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.positive {
  color: var(--teal-dark);
  font-weight: 900;
}

.sparkline {
  align-items: end;
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(7, 1fr);
  height: 86px;
  margin-top: 1.2rem;
}

.sparkline span {
  background: linear-gradient(180deg, var(--teal), #b7f1e3);
  border-radius: 8px 8px 2px 2px;
}

.card-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.virtual-card {
  background: linear-gradient(135deg, #10202a, #234a57 55%, #00a985);
  border-radius: 8px;
  color: #ffffff;
  display: grid;
  min-height: 172px;
  padding: 1rem;
}

.card-chip {
  background: linear-gradient(135deg, #f9d978, #dd9d29);
  border-radius: 6px;
  height: 30px;
  width: 42px;
}

.virtual-card span {
  align-self: end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.virtual-card strong {
  font-size: 1.1rem;
}

.icon-button {
  align-items: center;
  background: #edf7f5;
  border: 1px solid #cceae4;
  border-radius: 8px;
  color: var(--teal-dark);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.activity-panel {
  grid-column: span 2;
  padding: 1.25rem;
}

.activity-item {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.85rem;
  grid-template-columns: auto 1fr auto;
  padding: 1rem 0 0;
  margin-top: 1rem;
}

.activity-icon {
  align-items: center;
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.activity-icon.mint {
  background: var(--teal);
}

.activity-icon.coral {
  background: var(--coral);
}

.activity-icon.amber {
  background: var(--amber);
  color: var(--ink);
}

.activity-item strong,
.activity-item span {
  display: block;
}

.activity-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.fx-panel {
  align-items: center;
  display: flex;
  grid-column: span 2;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

.fx-panel span {
  color: var(--muted);
}

.logo-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}

.logo-strip .container,
.logo-row {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.logo-strip span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.logo-row {
  flex: 1;
  flex-wrap: wrap;
}

.logo-row strong {
  color: #75818c;
  font-size: 1rem;
}

.section-pad,
.payments-section,
.pricing-section,
.testimonial-section,
.cta-section {
  padding: 6rem 0;
}

.section-heading {
  margin: 0 auto 3rem;
  max-width: 760px;
  text-align: center;
}

.section-heading p,
.payments-section p,
.security-panel p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.feature-card {
  height: 100%;
  padding: 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 18px 45px rgba(14, 37, 51, 0.1);
  transform: translateY(-4px);
}

.feature-card i,
.metric-card i {
  align-items: center;
  background: #e9f8f5;
  border-radius: 8px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 1.35rem;
  height: 48px;
  justify-content: center;
  margin-bottom: 1.25rem;
  width: 48px;
}

.feature-card.accent-mint i {
  background: #dcf8ec;
}

.feature-card.accent-coral i {
  background: #ffe5e1;
  color: #d9473e;
}

.feature-card.accent-amber i {
  background: #fff1cf;
  color: #8b6100;
}

.feature-card h3 {
  font-size: 1.25rem;
}

.feature-card p,
.metric-card span,
.price-card p,
.price-card li,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.payments-section,
.pricing-section {
  background: var(--soft);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.check-list span {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  font-weight: 800;
}

.check-list i {
  color: var(--teal-dark);
  font-size: 1.25rem;
}

.detail-list {
  display: grid;
  gap: 1rem;
}

.detail-list div {
  align-items: start;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 0.35rem 1rem;
  grid-template-columns: auto 1fr;
  padding: 1.1rem;
}

.detail-list i {
  align-items: center;
  background: #e9f8f5;
  border-radius: 8px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 1.2rem;
  height: 42px;
  justify-content: center;
  grid-row: span 2;
  width: 42px;
}

.detail-list strong {
  font-size: 1.05rem;
}

.detail-list span {
  color: var(--muted);
}

.flow-board {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(14, 37, 51, 0.1);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 48px 1.25fr 48px 1fr;
  min-height: 360px;
  padding: 1.4rem;
}

.flow-column {
  display: grid;
  gap: 0.85rem;
}

.flow-column.center {
  place-items: center;
}

.flow-node,
.flow-core {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
}

.flow-node {
  background: #fbfdfc;
  font-weight: 800;
}

.flow-node i {
  color: var(--blue);
}

.flow-core {
  background: var(--ink);
  color: #ffffff;
  display: grid;
  min-height: 188px;
  place-items: center;
  text-align: center;
  width: 100%;
}

.flow-core i {
  color: #8be4d0;
  font-size: 2rem;
}

.flow-core span {
  color: rgba(255, 255, 255, 0.68);
}

.flow-connector {
  background: linear-gradient(90deg, #cbd7dc, var(--teal), #cbd7dc);
  height: 3px;
}

.security-panel {
  background: var(--navy);
  border-radius: 8px;
  color: #ffffff;
  padding: 2rem;
}

.security-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.security-badges span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.6rem 0.8rem;
}

.metric-card {
  display: grid;
  height: 100%;
  padding: 1.4rem;
}

.metric-card strong {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.price-card {
  display: grid;
  gap: 1rem;
  height: 100%;
  padding: 1.5rem;
}

.price-card.featured {
  border: 2px solid var(--teal);
  box-shadow: 0 22px 58px rgba(0, 169, 133, 0.16);
  transform: translateY(-10px);
}

.price-card > span {
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 2.5rem;
  margin: 0;
}

.price-card ul {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-card li::before {
  border-bottom: 3px solid var(--teal-dark);
  border-right: 3px solid var(--teal-dark);
  content: "";
  display: inline-block;
  height: 12px;
  margin-right: 0.55rem;
  transform: rotate(45deg) translateY(-2px);
  width: 7px;
}

.testimonial-wrap {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: #ffffff;
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
}

.testimonial-wrap img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}

.testimonial-wrap > div {
  padding: 2.5rem 2.5rem 2.5rem 0;
}

.testimonial-wrap i {
  color: var(--amber);
  font-size: 2.2rem;
}

blockquote {
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1.12;
  margin: 1rem 0;
}

.testimonial-wrap span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.cta-section {
  background: linear-gradient(135deg, #0e2533, #095d5c);
  color: #ffffff;
}

.cta-wrap {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 0.9fr;
}

.signup-form {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr auto;
  padding: 0.8rem;
}

.signup-form .form-control {
  border: 0;
  border-radius: 8px;
  min-height: 52px;
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
}

.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.site-footer h4 {
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.site-footer a:not(.footer-brand) {
  color: var(--muted);
  display: block;
  margin-bottom: 0.65rem;
}

.page-footer a {
  color: var(--muted);
  display: inline;
  margin: 0;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(14, 37, 51, 0.1);
  padding: 1.5rem;
}

.contact-card .form-label {
  color: var(--ink);
  font-weight: 800;
}

.contact-card .form-control {
  border-color: var(--line);
  border-radius: 8px;
  min-height: 50px;
}

.site-footer a:hover {
  color: var(--teal-dark);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-top: 0.9rem;
    padding: 1rem;
  }

  .hero-section {
    padding-top: 7.5rem;
  }

  .product-shell {
    margin: 0;
  }

  .logo-strip .container,
  .cta-wrap,
  .testimonial-wrap {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .logo-strip .container {
    display: grid;
  }

  .testimonial-wrap > div {
    padding: 0 2rem 2rem;
  }

  .flow-board {
    grid-template-columns: 1fr;
  }

  .flow-connector {
    height: 34px;
    justify-self: center;
    width: 3px;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
  }

  .hero-proof,
  .dashboard-grid,
  .signup-form {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0 0;
  }

  .activity-panel,
  .fx-panel {
    grid-column: auto;
  }

  .activity-item,
  .fx-panel {
    align-items: start;
    grid-template-columns: auto 1fr;
  }

  .activity-item b {
    grid-column: 2;
  }

  .section-pad,
  .payments-section,
  .pricing-section,
  .testimonial-section,
  .cta-section {
    padding: 4rem 0;
  }

  .testimonial-wrap img {
    min-height: 300px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .row {
    --bs-gutter-x: 0;
  }
}

@media (max-width: 420px) {
  .btn-lg {
    width: 100%;
  }

  .logo-row {
    gap: 0.9rem;
  }
}
