/* ============================================================
   VERACITY BANK — Landing Page Styles (landing.css)
   ============================================================ */

/* ── Landing Nav ── */
.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.landing-nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.landing-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.landing-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.landing-brand-icon {
  width: 34px; height: 34px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.landing-brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-1);
}
.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
}
.landing-nav-links li a {
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-xs);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  display: block;
}
.landing-nav-links li a:hover {
  color: var(--text-1);
  background: var(--surface-3);
}
.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.landing-login-btn {
  padding: 9px 20px;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}
.landing-login-btn:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 14px var(--red-glow);
  transform: translateY(-1px);
}

/* Hamburger */
.landing-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}
.landing-hamburger:hover { background: var(--surface-3); }
.landing-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all 0.3s;
}
.landing-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.landing-hamburger.open span:nth-child(2) { opacity: 0; }
.landing-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.landing-mobile-menu {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 0 20px;
  box-shadow: var(--shadow-md);
}
.landing-mobile-menu.open { display: block; }
.landing-mobile-menu ul { list-style: none; padding: 0 20px; }
.landing-mobile-menu ul li { border-bottom: 1px solid var(--border); }
.landing-mobile-menu ul li:last-child { border-bottom: none; }
.mobile-nav-link {
  display: block;
  padding: 14px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--text-1); }
.mobile-signin {
  color: var(--red) !important;
  font-weight: 600;
  padding-top: 18px;
}

/* ── Hero ── */
/* ── Hero wrapper — full viewport with bg image ── */
.landing-hero-wrapper {
  position: relative;
  overflow: hidden;
}
/* Background image layer */
.landing-hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/banner.jpg') center center / cover no-repeat;
  z-index: 0;
}
/* Dark gradient overlay — keeps text readable */
.landing-hero-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(255,255,255,0.97) 0%,
      rgba(255,255,255,0.92) 38%,
      rgba(255,255,255,0.60) 62%,
      rgba(255,255,255,0.15) 100%
    );
  z-index: 1;
}

.landing-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 32px 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
  z-index: 2; /* sits above the image + overlay */
}
.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(192,24,42,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 3;
}
.hero-bg-grid {
  display: none; /* grid lines clash with photo texture */
}
.hero-content {
  flex: 1;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 6px #16a34a;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-1);
  margin-bottom: 20px;
}
.hero-title-accent {
  color: var(--red);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-cta-primary {
  padding: 14px 28px;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  display: inline-block;
}
.hero-cta-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 24px var(--red-glow);
  transform: translateY(-2px);
}
.hero-cta-ghost {
  padding: 14px 24px;
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.hero-cta-ghost:hover {
  background: var(--surface);
  color: var(--text-1);
  border-color: var(--text-2);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 24px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.5px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-card-stack {
  position: relative;
  width: 340px;
  height: 420px;
}
.preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: absolute;
  animation: float-card 4s ease-in-out infinite;
}
.preview-main {
  width: 280px;
  padding: 22px;
  top: 20px;
  left: 30px;
  z-index: 2;
  animation-delay: 0s;
}
.preview-chip {
  width: 190px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  bottom: 40px;
  right: 0;
  z-index: 3;
  animation-delay: 0.5s;
}
.preview-stat {
  width: 150px;
  padding: 14px 16px;
  top: 0;
  right: 10px;
  z-index: 1;
  animation-delay: 1s;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.preview-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.preview-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.preview-name { font-size: 13px; font-weight: 600; color: var(--text-1); }
.preview-acct { font-size: 11px; color: var(--text-3); }
.preview-live-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  color: #16a34a;
  background: rgba(22,163,74,0.1);
  padding: 3px 8px;
  border-radius: 20px;
}
.preview-balance-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-3);
  margin-bottom: 4px;
}
.preview-balance {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.preview-balance span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-3);
}
.preview-card-bottom { display: flex; flex-direction: column; gap: 8px; }
.preview-txn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-2);
}
.preview-txn-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.preview-txn-dot.debit { background: var(--red); }
.preview-txn-dot.credit { background: #16a34a; }
.preview-txn-amt { margin-left: auto; font-weight: 600; }
.preview-txn-amt.debit { color: var(--red); }
.preview-txn-amt.credit { color: #16a34a; }
.chip-icon { font-size: 20px; }
.chip-text { font-size: 12px; font-weight: 600; color: var(--text-1); }
.chip-text span { font-size: 10px; color: #16a34a; font-weight: 500; }
.stat-num-big { font-size: 28px; font-weight: 800; color: var(--text-1); letter-spacing: -1px; }
.stat-label-small { font-size: 11px; color: var(--text-3); margin: 2px 0 4px; }
.stat-trend { font-size: 11px; font-weight: 600; color: #16a34a; }

/* ── Landing sections ── */
.landing-section {
  padding: 100px 0;
  background: var(--surface);
}
.landing-section:nth-child(odd) {
  background: var(--bg);
}
.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-label.light { color: rgba(255,255,255,0.6); }
.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.15;
}
.section-sub {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 52px;
  max-width: 480px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s, opacity 0.4s, translate 0.4s;
  opacity: 0;
  translate: 0 20px;
}
.feature-card.visible {
  opacity: 1;
  translate: 0 0;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* Security Strip */
.security-strip {
  background: var(--text-1);
  padding: 100px 0;
  overflow: hidden;
}
.security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s, translate 0.5s;
  translate: 0 24px;
}
.security-inner.visible { opacity: 1; translate: 0 0; }
.security-text .section-heading { color: #fff; }
.security-text p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.75; margin-bottom: 28px; }
.security-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.sec-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 40px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.security-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 280px;
}
.sec-lock-ring {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(192,24,42,0.2);
  border: 2px solid rgba(192,24,42,0.4);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 2;
}
.sec-lock-inner {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.sec-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.12);
  animation: orbit-spin 10s linear infinite;
}
.sec-orbit-1 { width: 220px; height: 220px; }
.sec-orbit-2 { width: 320px; height: 320px; animation-direction: reverse; animation-duration: 16s; }
.sec-orbit-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--red);
}
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Plans */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s, opacity 0.4s;
  opacity: 0;
  position: relative;
}
.plan-card.visible { opacity: 1; }
.plan-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), var(--shadow-md);
  transform: translateY(-8px);
}
.plan-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name { font-size: 14px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.plan-price { font-size: 40px; font-weight: 800; color: var(--text-1); letter-spacing: -1.5px; margin-bottom: 6px; }
.plan-price span { font-size: 16px; font-weight: 500; color: var(--text-3); }
.plan-desc { font-size: 14px; color: var(--text-2); margin-bottom: 24px; line-height: 1.5; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { font-size: 14px; color: var(--text-1); font-weight: 500; }
.plan-features li.muted { color: var(--text-3); font-weight: 400; }
.plan-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.plan-cta.primary { background: var(--red); color: #fff; }
.plan-cta.primary:hover { background: var(--red-dark); box-shadow: 0 4px 14px var(--red-glow); }
.plan-cta.ghost { background: var(--surface-2); color: var(--text-2); border: 1.5px solid var(--border); }
.plan-cta.ghost:hover { background: var(--surface-3); color: var(--text-1); }

/* CTA Band */
.cta-band {
  background: var(--red);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  top: -200px; right: -200px;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,transparent,transparent 39px,rgba(255,255,255,0.04) 40px),
              repeating-linear-gradient(90deg,transparent,transparent 39px,rgba(255,255,255,0.04) 40px);
  pointer-events: none;
}
.cta-band-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-band-inner h2 { font-size: clamp(28px,4vw,42px); font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -1px; }
.cta-band-inner p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.cta-band-inner .hero-cta-primary { background: #fff; color: var(--red); }
.cta-band-inner .hero-cta-primary:hover { background: rgba(255,255,255,0.92); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }

/* Footer */
.landing-footer { background: var(--text-1); padding: 60px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-links-group a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links-group a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   RESPONSIVE — Landing + App Pages
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid .plan-card:last-child { grid-column: 1 / -1; max-width: 380px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .security-inner { gap: 48px; }
  .hero-card-stack { width: 300px; height: 380px; }
  .preview-main { width: 240px; }
}

/* Large mobile */
@media (max-width: 768px) {
  .landing-hamburger { display: flex; }
  .landing-nav-links { display: none; }
  .landing-nav-inner { padding: 0 20px; gap: 16px; }
  
  .landing-hero {
    flex-direction: column;
    min-height: auto;
    padding: 110px 20px 60px;
    text-align: center;
    gap: 48px;
  }
  .hero-content { max-width: 100%; }
  .hero-badge { margin: 0 auto 24px; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .hero-stat-divider { display: none; }
  .hero-stat { align-items: center; text-align: center; padding: 0; }
  .hero-visual { width: 100%; justify-content: center; }
  .hero-card-stack { width: 100%; max-width: 340px; height: 380px; }
  
  .features-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plans-grid .plan-card:last-child { max-width: 100%; }
  .plan-card.featured { transform: none; }
  
  .security-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .security-visual { height: 200px; }
  .sec-orbit-2 { width: 220px; height: 220px; }
  .security-badges { justify-content: center; }
  
  .landing-section { padding: 70px 0; }
  .landing-container { padding: 0 20px; }
  
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* App pages on mobile */
  .app-nav { padding: 0 16px; }
  .app-nav-links { display: none; }
  .page-content { padding: 20px 16px; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .balance-hero { padding: 22px 20px; gap: 16px; }
  .balance-amount { font-size: 34px; }
  .page-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .quick-actions { width: 100%; }
  .btn-action { flex: 1; justify-content: center; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-title { font-size: 36px; letter-spacing: -1px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-cta-primary, .hero-cta-ghost { width: 100%; text-align: center; }
  .preview-chip, .preview-stat { display: none; }
  .hero-card-stack { height: auto; position: static; }
  .preview-main { position: static; width: 100%; animation: none; }

  .landing-section { padding: 56px 0; }
  .section-heading { font-size: 26px; }
  .feature-card { padding: 22px 18px; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* App nav mobile bottom-style adjustments */
  .dash-stats { grid-template-columns: 1fr; }
  .stat-card { padding: 16px; }
  .txn-table th:nth-child(3),
  .txn-table td:nth-child(3) { display: none; }
  .modal-box { padding: 26px 20px; }
  .passcode-digit { width: 48px; height: 52px; font-size: 20px; }
}

/* Login page mobile improvements */
@media (max-width: 900px) {
  .login-body { grid-template-columns: 1fr; }
  .login-left { display: none; }
  .login-right { border-left: none; padding: 40px 24px; }
  .login-box { max-width: 100%; }
}

@media (max-width: 480px) {
  .login-right { padding: 32px 20px; }
  .login-box h2 { font-size: 22px; }
  .public-nav { padding: 0 20px; }
  .public-nav-links { display: none; }
}

/* Profile page mobile */
@media (max-width: 768px) {
  .profile-grid { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
  .profile-fields-grid { grid-template-columns: 1fr; }
  .edit-fields-grid { grid-template-columns: 1fr; }
  .edit-fields-grid .form-group.full,
  .profile-field-group.full { grid-column: 1; }
}

/* Send money mobile */
@media (max-width: 640px) {
  .transfer-type-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-grid-2 .form-group.full { grid-column: 1; }
  .step-label { display: none; }
  .send-money-container { max-width: 100%; }
}
