/* =====================================================
   DashCash New UI – Matching PDF Design
   Primary: #1B6EF3 | Accent: #0EA5E9 | Dark: #0F172A
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Dancing+Script:wght@600;700&display=swap');

:root {
  --dc-primary: #1B6EF3;
  --dc-primary-dark: #1557C0;
  --dc-primary-light: #E8F1FE;
  --dc-accent: #0EA5E9;
  --dc-success: #10B981;
  --dc-warning: #F59E0B;
  --dc-danger: #EF4444;
  --dc-dark: #0F172A;
  --dc-slate: #334155;
  --dc-muted: #64748B;
  --dc-border: #E2E8F0;
  --dc-bg: #F8FAFC;
  --dc-white: #FFFFFF;
  --dc-radius: 16px;
  --dc-radius-sm: 10px;
  --dc-radius-lg: 24px;
  --dc-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --dc-shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --dc-font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
body {
  font-family: var(--dc-font);
  color: var(--dc-slate);
  background: var(--dc-bg);
  margin: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

/* ---------- Utility ---------- */
.dc-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.dc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: none; cursor: pointer; transition: all .25s ease;
}
.dc-btn-primary {
  background: linear-gradient(135deg, var(--dc-primary), var(--dc-accent));
  color: #fff; box-shadow: 0 4px 14px rgba(27, 110, 243, 0.35);
}
.dc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 110, 243, 0.45);
  color: #fff;
}
.dc-btn-outline {
  background: transparent; border: 2px solid var(--dc-primary); color: var(--dc-primary);
}
.dc-btn-outline:hover { background: var(--dc-primary); color: #fff; }
.dc-btn-ghost { background: transparent; color: var(--dc-slate); }
.dc-btn-ghost:hover { color: var(--dc-primary); }
.dc-btn-sm { padding: 8px 18px; font-size: 13px; }
.dc-btn-block { width: 100%; }

/* ---------- Promo Banner (top strip) ---------- */
.dc-promo-bar {
  background: linear-gradient(90deg, #0F172A 0%, #1B6EF3 50%, #0EA5E9 100%);
  color: #fff; text-align: center; padding: 10px 16px; font-size: 14px; font-weight: 500;
  position: relative; z-index: 1001;
}
.dc-promo-bar a { color: #FEF08A; text-decoration: underline; font-weight: 700; }
.dc-promo-bar .dc-promo-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; opacity: .7;
}
.dc-promo-bar .dc-promo-close:hover { opacity: 1; }

/* ---------- Header ---------- */
.dc-header {
  background: var(--dc-white); border-bottom: 1px solid var(--dc-border);
  position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.dc-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.dc-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; color: var(--dc-dark); }
.dc-logo img {
  height: 40px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
  display: block !important;
}
.dc-logo span { display: none !important; }
.dc-nav { display: flex; align-items: center; gap: 28px; }
.dc-nav a {
  font-size: 14.5px; font-weight: 500; color: var(--dc-slate); position: relative;
}
.dc-nav a:hover, .dc-nav a.active { color: var(--dc-primary); }
.dc-nav a.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--dc-primary); border-radius: 2px;
}
.dc-header-actions { display: flex; align-items: center; gap: 12px; }
.dc-mobile-toggle {
  display: none; background: none; border: none; font-size: 24px; color: var(--dc-dark); cursor: pointer;
}

/* ---------- Hero / Get Started ---------- */
.dc-hero {
  background: linear-gradient(165deg, #F0F7FF 0%, #FFFFFF 45%, #F8FAFC 100%);
  padding: 32px 0 40px; position: relative; overflow: hidden;
}
.dc-hero::before {
  content: ''; position: absolute; top: -20%; right: -10%; width: 50%; height: 80%;
  background: radial-gradient(circle, rgba(27,110,243,.08) 0%, transparent 70%);
  pointer-events: none;
}
.dc-hero-grid {
  display: grid !important;
  grid-template-columns: 1.05fr 0.95fr !important;
  gap: 28px 36px !important;
  align-items: start !important;
  position: relative;
  z-index: 1;
}
.dc-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--dc-primary-light); color: var(--dc-primary);
  padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 600;
  margin-bottom: 16px; letter-spacing: .3px;
}
.dc-hero h1 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: var(--dc-dark);
  line-height: 1.15; margin: 0 0 16px;
}
.dc-hero h1 span { color: var(--dc-primary); }
.dc-hero-sub {
  font-size: 17px; color: var(--dc-muted); margin-bottom: 24px; max-width: 480px;
}
.dc-converter-card {
  background: var(--dc-white); border-radius: var(--dc-radius-lg);
  box-shadow: var(--dc-shadow-lg); padding: 24px; border: 1px solid var(--dc-border);
  max-width: 440px;
}
.dc-converter-card .dc-tabs {
  display: flex; background: var(--dc-bg); border-radius: 12px; padding: 4px; margin-bottom: 20px;
}
.dc-converter-card .dc-tab {
  flex: 1; text-align: center; padding: 10px; border-radius: 10px;
  font-weight: 600; font-size: 14px; cursor: pointer; color: var(--dc-muted); border: none; background: none;
}
.dc-converter-card .dc-tab.active {
  background: var(--dc-white); color: var(--dc-primary); box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.dc-field { margin-bottom: 16px; }
.dc-field label { display: block; font-size: 13px; font-weight: 600; color: var(--dc-slate); margin-bottom: 6px; }
.dc-field-row {
  display: flex; align-items: center; background: var(--dc-bg); border: 1.5px solid var(--dc-border);
  border-radius: var(--dc-radius-sm); overflow: hidden; transition: border-color .2s;
}
.dc-field-row:focus-within { border-color: var(--dc-primary); }
.dc-field-row input {
  flex: 1; border: none; background: transparent; padding: 14px 16px;
  font-size: 18px; font-weight: 700; color: var(--dc-dark); outline: none; width: 100%; min-width: 0;
}
.dc-field-row .dc-currency {
  display: flex; align-items: center; gap: 6px; padding: 0 14px;
  font-weight: 700; font-size: 14px; color: var(--dc-dark); border-left: 1px solid var(--dc-border);
  background: #fff; height: 100%; min-height: 52px; white-space: nowrap;
}
.dc-rate-info {
  text-align: center; font-size: 13px; margin: 12px 0;
  padding: 8px; background: var(--dc-primary-light); border-radius: 8px; color: var(--dc-primary); font-weight: 500;
}

/* Hero right: script + globe + families card */
.dc-hero-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 4px;
}
.dc-hero-visual {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.dc-hero-script {
  font-family: "Dancing Script", "Segoe Script", cursive !important;
  font-size: clamp(28px, 3.5vw, 40px) !important;
  font-weight: 700 !important;
  color: #1B6EF3 !important;
  text-align: right !important;
  line-height: 1.2 !important;
  transform: rotate(-6deg);
  transform-origin: right center;
  margin: 0 0 8px auto !important;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 3;
}
.dc-hero-script::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin: 8px 0 0 auto;
  background: linear-gradient(90deg, #7dd3fc, #1B6EF3);
  border-radius: 4px;
}
.dc-globe-wrap {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}
.dc-globe-img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain !important;
  background: transparent !important;
  display: block;
}

/* Hide leftover flag text (PK BD IN NP PH) and old floating badges */
.dc-flag-pin,
.dc-globe-wrap > span,
.dc-floating-badge,
.dc-badge-security,
.dc-badge-families {
  display: none !important;
}

.dc-families-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  margin: 12px auto 0;
  width: fit-content;
  max-width: 100%;
}
.dc-families-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  color: #1B6EF3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.dc-families-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}
.dc-families-card span {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

/* Old illustration class (keep for compatibility) */
.dc-hero-illustration {
  max-width: 420px; position: relative;
}
.dc-hero-illustration img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Stats Bar ---------- */
.dc-stats {
  background: var(--dc-white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  margin: 36px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--dc-border);
  overflow: hidden;
  align-items: stretch;
}
.dc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid var(--dc-border);
  min-height: 140px;
  box-sizing: border-box;
}
.dc-stat:last-child { border-right: none; }
.dc-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: var(--dc-primary-light);
  color: var(--dc-primary);
  font-size: 20px;
  flex-shrink: 0;
}
.dc-stat h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dc-dark);
  margin: 0 0 6px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.dc-stat p {
  font-size: 13px;
  color: var(--dc-muted);
  margin: 0;
  line-height: 1.35;
  max-width: 140px;
}

/* ---------- Section Common ---------- */
.dc-section { padding: 80px 0; }
.dc-section-sm { padding: 48px 0; }
.dc-section-title {
  text-align: center; margin-bottom: 48px;
}
.dc-section-title .dc-label {
  display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--dc-primary); margin-bottom: 8px;
}
.dc-section-title h2 {
  font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--dc-dark); margin: 0 0 12px;
}
.dc-section-title p { color: var(--dc-muted); max-width: 560px; margin: 0 auto; font-size: 16px; }

/* ---------- Features ---------- */
.dc-features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.dc-feature-card {
  background: var(--dc-white); border-radius: var(--dc-radius); padding: 28px 24px;
  border: 1px solid var(--dc-border); transition: all .3s; text-align: center;
}
.dc-feature-card:hover {
  transform: translateY(-4px); box-shadow: var(--dc-shadow-lg); border-color: transparent;
}
.dc-feature-icon {
  width: 56px; height: 56px; border-radius: 16px; display: inline-flex;
  align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px;
  background: var(--dc-primary-light); color: var(--dc-primary);
}
.dc-feature-card h4 { font-size: 16px; font-weight: 700; color: var(--dc-dark); margin: 0 0 8px; }
.dc-feature-card p { font-size: 13.5px; color: var(--dc-muted); margin: 0; line-height: 1.5; }

/* ---------- How it Works ---------- */
.dc-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative;
}
.dc-step {
  text-align: center; position: relative; padding: 0 16px;
}
.dc-step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--dc-primary);
  color: #fff; font-size: 22px; font-weight: 800; display: inline-flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(27,110,243,.35);
}
.dc-step h4 { font-size: 18px; font-weight: 700; color: var(--dc-dark); margin: 0 0 8px; }
.dc-step p { font-size: 14px; color: var(--dc-muted); margin: 0; }

/* ---------- Promo / Download Banner ---------- */
.dc-promo-banner {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 40%, #1B6EF3 100%);
  border-radius: var(--dc-radius-lg); padding: 48px; color: #fff;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.dc-promo-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 60%);
}
.dc-promo-banner h2 { font-size: 28px; font-weight: 800; margin: 0 0 12px; position: relative; }
.dc-promo-banner p { font-size: 15px; opacity: .9; margin: 0 0 24px; position: relative; max-width: 420px; }
.dc-promo-banner .dc-promo-cta { position: relative; display: flex; gap: 12px; flex-wrap: wrap; }
.dc-promo-badge {
  display: inline-block; background: rgba(254, 240, 138, 0.2); color: #FEF08A;
  padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700;
  margin-bottom: 12px; position: relative;
}
.dc-app-buttons { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }
.dc-app-btn {
  display: flex; align-items: center; gap: 10px; background: #fff; color: var(--dc-dark);
  padding: 10px 18px; border-radius: 12px; font-size: 13px; font-weight: 600;
  transition: transform .2s;
}
.dc-app-btn:hover { transform: scale(1.04); color: var(--dc-dark); }
.dc-app-btn i { font-size: 24px; }
.dc-app-btn small { display: block; font-size: 10px; font-weight: 400; opacity: .7; }
.dc-promo-banner img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Trust / Security ---------- */
.dc-trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.dc-trust-card {
  background: var(--dc-white); border: 1px solid var(--dc-border); border-radius: var(--dc-radius);
  padding: 28px; text-align: center;
}
.dc-trust-card .dc-trust-icon {
  width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  background: var(--dc-primary-light); color: var(--dc-primary);
}
.dc-trust-card h4 { font-size: 16px; font-weight: 700; color: var(--dc-dark); margin: 0 0 8px; }
.dc-trust-card p { font-size: 13.5px; color: var(--dc-muted); margin: 0; }

/* ---------- Testimonials ---------- */
.dc-testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.dc-testimonial-card {
  background: var(--dc-white); border-radius: var(--dc-radius); padding: 28px;
  border: 1px solid var(--dc-border); box-shadow: var(--dc-shadow);
}
.dc-testimonial-card .stars { color: #FBBF24; margin-bottom: 12px; font-size: 14px; }
.dc-testimonial-card p {
  font-size: 14px; color: var(--dc-slate); margin: 0 0 20px; line-height: 1.6; font-style: italic;
}
.dc-testimonial-author { display: flex; align-items: center; gap: 12px; }
.dc-testimonial-author .avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--dc-primary-light);
  display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--dc-primary);
}
.dc-testimonial-author strong { display: block; font-size: 14px; color: var(--dc-dark); }
.dc-testimonial-author span { font-size: 12px; color: var(--dc-muted); }

/* ---------- FAQ ---------- */
.dc-faq-list { max-width: 720px; margin: 0 auto; }
.dc-faq-item {
  background: var(--dc-white); border: 1px solid var(--dc-border); border-radius: var(--dc-radius-sm);
  margin-bottom: 12px; overflow: hidden;
}
.dc-faq-item summary {
  padding: 18px 24px; font-weight: 600; font-size: 15px; color: var(--dc-dark);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.dc-faq-item summary::-webkit-details-marker { display: none; }
.dc-faq-item summary::after {
  content: '+'; font-size: 20px; color: var(--dc-primary); font-weight: 400;
}
.dc-faq-item[open] summary::after { content: '−'; }
.dc-faq-item .dc-faq-body {
  padding: 0 24px 18px; font-size: 14px; color: var(--dc-muted); line-height: 1.6;
}

/* ---------- Auth Pages (Login / Register) ---------- */
.dc-auth-page {
  min-height: calc(100vh - 72px); display: grid; grid-template-columns: 1fr 1fr;
  background: var(--dc-bg);
}
.dc-auth-visual {
  background: linear-gradient(160deg, #E8F1FE 0%, #F0F7FF 50%, #FFFFFF 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 48px; position: relative; overflow: hidden;
}
.dc-auth-visual h2 {
  font-size: 28px; font-weight: 800; color: var(--dc-dark); text-align: center; margin: 0 0 8px;
}
.dc-auth-visual p { color: var(--dc-muted); text-align: center; max-width: 360px; margin-bottom: 32px; }
.dc-auth-phone {
  max-width: 280px; position: relative; z-index: 2;
}
.dc-auth-phone img {
  max-width: 100%;
  height: auto;
  display: block;
}
.dc-auth-stats {
  display: flex; gap: 32px; margin-top: 40px; position: relative; z-index: 2;
}
.dc-auth-stats .item { text-align: center; }
.dc-auth-stats .item strong { display: block; font-size: 22px; font-weight: 800; color: var(--dc-dark); }
.dc-auth-stats .item span { font-size: 12px; color: var(--dc-muted); }
.dc-auth-form-wrap {
  display: flex; align-items: center; justify-content: center; padding: 48px 40px;
  background: var(--dc-white);
}
.dc-auth-form {
  width: 100%; max-width: 400px;
}
.dc-auth-form .dc-tabs {
  display: flex; background: var(--dc-bg); border-radius: 12px; padding: 4px; margin-bottom: 28px;
}
.dc-auth-form .dc-tab {
  flex: 1; text-align: center; padding: 10px; border-radius: 10px;
  font-weight: 600; font-size: 14px; cursor: pointer; color: var(--dc-muted);
  border: none; background: none; text-decoration: none;
}
.dc-auth-form .dc-tab.active {
  background: var(--dc-white); color: var(--dc-primary); box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.dc-auth-form h3 {
  font-size: 24px; font-weight: 800; color: var(--dc-dark); margin: 0 0 6px;
}
.dc-auth-form .dc-subtitle {
  font-size: 14px; color: var(--dc-muted); margin-bottom: 28px;
}
.dc-input-group { margin-bottom: 18px; }
.dc-input-group label {
  display: block; font-size: 13px; font-weight: 600; color: var(--dc-slate); margin-bottom: 6px;
}
.dc-input-group .dc-input-wrap {
  position: relative; display: flex; align-items: center;
}
.dc-input-group input, .dc-input-group select, .dc-input-group textarea {
  width: 100%; padding: 13px 16px 13px 44px; border: 1.5px solid var(--dc-border);
  border-radius: var(--dc-radius-sm); font-size: 14.5px; color: var(--dc-dark);
  background: var(--dc-bg); outline: none; transition: border-color .2s, background .2s;
  font-family: inherit;
}
.dc-input-group input:focus, .dc-input-group select:focus, .dc-input-group textarea:focus {
  border-color: var(--dc-primary); background: #fff;
}
.dc-input-group .dc-input-icon {
  position: absolute; left: 14px; color: var(--dc-muted); font-size: 16px; pointer-events: none;
}
.dc-input-group .dc-toggle-pass {
  position: absolute; right: 14px; background: none; border: none; color: var(--dc-muted);
  cursor: pointer; font-size: 16px;
}
.dc-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dc-check-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; font-size: 13.5px;
}
.dc-check-row label { display: flex; align-items: center; gap: 8px; cursor: pointer; color: var(--dc-slate); }
.dc-check-row a { color: var(--dc-primary); font-weight: 600; }
.dc-auth-footer {
  text-align: center; margin-top: 24px; font-size: 14px; color: var(--dc-muted);
}
.dc-auth-footer a { color: var(--dc-primary); font-weight: 600; }

/* ---------- Contact Page ---------- */
.dc-contact-hero {
  background: linear-gradient(165deg, #F0F7FF 0%, #FFFFFF 100%);
  padding: 60px 0 40px; text-align: center;
}
.dc-contact-hero h1 { font-size: 36px; font-weight: 800; color: var(--dc-dark); margin: 0 0 12px; }
.dc-contact-hero p { color: var(--dc-muted); max-width: 520px; margin: 0 auto; }
.dc-contact-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; margin-top: 40px;
}
.dc-contact-form-card, .dc-contact-info-card {
  background: var(--dc-white); border-radius: var(--dc-radius-lg);
  padding: 36px; border: 1px solid var(--dc-border); box-shadow: var(--dc-shadow);
}
.dc-contact-form-card h3, .dc-contact-info-card h3 {
  font-size: 20px; font-weight: 700; color: var(--dc-dark); margin: 0 0 24px;
}
.dc-contact-info-item {
  display: flex; gap: 14px; margin-bottom: 24px;
}
.dc-contact-info-item .icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--dc-primary-light);
  color: var(--dc-primary); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.dc-contact-info-item strong { display: block; font-size: 14px; color: var(--dc-dark); margin-bottom: 2px; }
.dc-contact-info-item span { font-size: 13.5px; color: var(--dc-muted); }
.dc-help-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
.dc-help-card {
  background: var(--dc-white); border: 1px solid var(--dc-border); border-radius: var(--dc-radius);
  padding: 28px; text-align: center; transition: all .25s;
}
.dc-help-card:hover { transform: translateY(-3px); box-shadow: var(--dc-shadow); }
.dc-help-card .icon {
  width: 48px; height: 48px; border-radius: 14px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: var(--dc-primary-light); color: var(--dc-primary);
}
.dc-help-card h4 { font-size: 15px; font-weight: 700; color: var(--dc-dark); margin: 0 0 6px; }
.dc-help-card p { font-size: 13px; color: var(--dc-muted); margin: 0 0 14px; }
.dc-help-card a { font-size: 13px; font-weight: 600; color: var(--dc-primary); }

/* ---------- User Dashboard ---------- */
.dc-dash-layout {
  display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; background: var(--dc-bg);
}
.dc-sidebar {
  background: var(--dc-white); border-right: 1px solid var(--dc-border);
  padding: 20px 14px; position: sticky; top: 0; height: 100vh; overflow-y: auto;
  display: flex; flex-direction: column;
}
.dc-sidebar .dc-logo { margin-bottom: 28px; padding: 0 10px; }
.dc-side-nav { flex: 1; }
.dc-side-nav .nav-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: var(--dc-muted); padding: 16px 14px 8px;
}
.dc-side-nav a {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px;
  border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--dc-slate);
  margin-bottom: 2px; transition: all .2s;
}
.dc-side-nav a:hover, .dc-side-nav a.active {
  background: var(--dc-primary-light); color: var(--dc-primary);
}
.dc-side-nav a i { width: 20px; text-align: center; font-size: 17px; }
.dc-side-help {
  margin-top: auto; background: var(--dc-primary-light); border-radius: 14px;
  padding: 18px; text-align: center;
}
.dc-side-help h4 { font-size: 14px; font-weight: 700; color: var(--dc-dark); margin: 0 0 4px; }
.dc-side-help p { font-size: 12px; color: var(--dc-muted); margin: 0 0 12px; }

.dc-dash-main { display: flex; flex-direction: column; min-height: 100vh; }
.dc-dash-topbar {
  background: var(--dc-white); border-bottom: 1px solid var(--dc-border);
  padding: 14px 28px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; position: sticky; top: 0; z-index: 50;
}
.dc-dash-topbar .left { display: flex; align-items: center; gap: 14px; }
.dc-sidebar-toggle {
  display: none; background: none; border: none; font-size: 20px; color: var(--dc-dark); cursor: pointer;
}
.dc-breadcrumb { font-size: 14px; color: var(--dc-muted); }
.dc-breadcrumb a { color: var(--dc-primary); font-weight: 500; }
.dc-breadcrumb span { color: var(--dc-dark); font-weight: 600; }
.dc-dash-topbar .right { display: flex; align-items: center; gap: 14px; }
.dc-notif-btn {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--dc-border);
  background: var(--dc-bg); display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative; color: var(--dc-slate);
}
.dc-notif-btn .badge {
  position: absolute; top: -4px; right: -4px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--dc-danger); color: #fff; font-size: 10px;
  display: flex; align-items: center; justify-content: center;
}
.dc-user-chip {
  display: flex; align-items: center; gap: 10px; padding: 6px 12px 6px 6px;
  border-radius: 999px; border: 1px solid var(--dc-border); background: var(--dc-bg); cursor: pointer;
}
.dc-user-chip .avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--dc-primary-light);
  color: var(--dc-primary); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.dc-user-chip strong { font-size: 13px; color: var(--dc-dark); }
.dc-dash-body { padding: 28px 32px; flex: 1; }
.dc-dash-content { padding: 28px 32px; }

.dc-page-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 24px;
}
.dc-page-header h2 { font-size: 22px; font-weight: 800; color: var(--dc-dark); margin: 0; }
.dc-page-header p { font-size: 14px; color: var(--dc-muted); margin: 4px 0 0; }

.dc-dash-greeting h2 {
  font-size: 24px; font-weight: 800; color: var(--dc-dark); margin: 0 0 4px;
}
.dc-dash-greeting p { color: var(--dc-muted); font-size: 14px; margin: 0 0 28px; }
.dc-dash-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px;
}
.dc-dash-card {
  background: var(--dc-white); border-radius: var(--dc-radius); padding: 22px;
  border: 1px solid var(--dc-border); box-shadow: var(--dc-shadow);
}
.dc-dash-card .label { font-size: 12px; color: var(--dc-muted); font-weight: 500; margin-bottom: 6px; }
.dc-dash-card .value { font-size: 22px; font-weight: 800; color: var(--dc-dark); }
.dc-dash-card .sub { font-size: 12px; color: var(--dc-success); margin-top: 4px; }
.dc-dash-card .icon-wrap {
  float: right; width: 40px; height: 40px; border-radius: 10px;
  background: var(--dc-primary-light); color: var(--dc-primary);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.dc-quick-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px;
}
.dc-quick-actions .dc-btn { border-radius: 12px; }
.dc-dash-panels {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px;
}
.dc-panel {
  background: var(--dc-white); border-radius: var(--dc-radius);
  border: 1px solid var(--dc-border); box-shadow: var(--dc-shadow); overflow: hidden;
}
.dc-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--dc-border);
}
.dc-panel-header h3 { font-size: 16px; font-weight: 700; color: var(--dc-dark); margin: 0; }
.dc-panel-header a { font-size: 13px; color: var(--dc-primary); font-weight: 600; }
.dc-panel-body { padding: 8px 0; }
.dc-tx-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; border-bottom: 1px solid var(--dc-border); transition: background .15s;
}
.dc-tx-row:last-child { border-bottom: none; }
.dc-tx-row:hover { background: var(--dc-bg); }
.dc-tx-info { display: flex; align-items: center; gap: 12px; }
.dc-tx-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--dc-primary-light);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  color: var(--dc-primary); font-size: 13px;
}
.dc-tx-info strong { display: block; font-size: 14px; color: var(--dc-dark); }
.dc-tx-info span { font-size: 12px; color: var(--dc-muted); }
.dc-tx-amount { text-align: right; }
.dc-tx-amount strong { display: block; font-size: 14px; color: var(--dc-dark); }
.dc-tx-amount .status {
  display: inline-block; font-size: 11px; font-weight: 600; padding: 2px 8px;
  border-radius: 999px; margin-top: 2px;
}
.dc-tx-amount .status.completed { background: #ECFDF5; color: var(--dc-success); }
.dc-tx-amount .status.pending { background: #FFFBEB; color: var(--dc-warning); }
.dc-tx-amount .status.review { background: #EFF6FF; color: var(--dc-primary); }
.dc-rate-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px; border-bottom: 1px solid var(--dc-border);
}
.dc-rate-row:last-child { border-bottom: none; }
.dc-rate-row .flag-code { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; color: var(--dc-dark); }
.dc-rate-row .rate { font-size: 14px; color: var(--dc-slate); font-weight: 500; }

/* ---------- Data table ---------- */
.dc-table-wrap {
  background: var(--dc-white); border-radius: var(--dc-radius);
  border: 1px solid var(--dc-border); box-shadow: var(--dc-shadow); overflow: hidden;
}
.dc-table-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--dc-border); gap: 12px; flex-wrap: wrap;
}
.dc-search-input {
  display: flex; align-items: center; gap: 8px; background: var(--dc-bg);
  border: 1.5px solid var(--dc-border); border-radius: 10px; padding: 8px 14px; min-width: 240px;
}
.dc-search-input input {
  border: none; background: transparent; outline: none; font-size: 14px; width: 100%; color: var(--dc-dark);
}
.dc-table { width: 100%; border-collapse: collapse; }
.dc-table th {
  text-align: left; padding: 12px 20px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px; color: var(--dc-muted);
  background: var(--dc-bg); border-bottom: 1px solid var(--dc-border);
}
.dc-table td {
  padding: 14px 20px; font-size: 14px; color: var(--dc-slate);
  border-bottom: 1px solid var(--dc-border); vertical-align: middle;
}
.dc-table tr:last-child td { border-bottom: none; }
.dc-table tr:hover td { background: #F8FAFC; }
.dc-badge {
  display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 600;
}
.dc-badge-success { background: #ECFDF5; color: var(--dc-success); }
.dc-badge-warning { background: #FFFBEB; color: var(--dc-warning); }
.dc-badge-danger { background: #FEF2F2; color: var(--dc-danger); }
.dc-badge-info { background: #EFF6FF; color: var(--dc-primary); }
.dc-badge-muted { background: var(--dc-bg); color: var(--dc-muted); }

/* ---------- Forms ---------- */
.dc-form-card {
  background: var(--dc-white); border-radius: var(--dc-radius);
  border: 1px solid var(--dc-border); box-shadow: var(--dc-shadow); padding: 28px;
}
.dc-form-card h3 {
  font-size: 18px; font-weight: 700; color: var(--dc-dark); margin: 0 0 20px;
}
.dc-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.dc-form-grid .full { grid-column: 1 / -1; }
.dc-steps-bar {
  display: flex; gap: 8px; margin-bottom: 28px;
}
.dc-steps-bar .step {
  flex: 1; text-align: center; padding: 12px 8px; border-radius: 10px;
  font-size: 13px; font-weight: 600; background: var(--dc-bg); color: var(--dc-muted);
  border: 1.5px solid var(--dc-border);
}
.dc-steps-bar .step.active {
  background: var(--dc-primary-light); color: var(--dc-primary); border-color: var(--dc-primary);
}
.dc-steps-bar .step.done {
  background: #ECFDF5; color: var(--dc-success); border-color: var(--dc-success);
}

/* ---------- Cards grid ---------- */
.dc-cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.dc-person-card {
  background: var(--dc-white); border: 1px solid var(--dc-border); border-radius: var(--dc-radius);
  padding: 22px; box-shadow: var(--dc-shadow); transition: all .25s;
}
.dc-person-card:hover {
  transform: translateY(-3px); box-shadow: var(--dc-shadow-lg);
}
.dc-person-card .head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
}
.dc-person-card .avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--dc-primary-light);
  color: var(--dc-primary); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; flex-shrink: 0;
}
.dc-person-card h4 { font-size: 15px; font-weight: 700; color: var(--dc-dark); margin: 0 0 2px; }
.dc-person-card .meta { font-size: 12px; color: var(--dc-muted); }
.dc-person-card .actions {
  display: flex; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--dc-border);
}

/* ---------- Public page hero ---------- */
.dc-page-hero {
  background: linear-gradient(165deg, #F0F7FF 0%, #FFFFFF 100%);
  padding: 56px 0 40px; text-align: center;
}
.dc-page-hero .dc-label {
  display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--dc-primary); margin-bottom: 10px;
}
.dc-page-hero h1 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; color: var(--dc-dark); margin: 0 0 12px;
}
.dc-page-hero p {
  color: var(--dc-muted); max-width: 560px; margin: 0 auto; font-size: 16px;
}

/* ---------- Content cards / journal ---------- */
.dc-content-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px;
}
.dc-content-card {
  background: var(--dc-white); border-radius: var(--dc-radius); border: 1px solid var(--dc-border);
  overflow: hidden; box-shadow: var(--dc-shadow); transition: all .25s;
}
.dc-content-card:hover {
  transform: translateY(-4px); box-shadow: var(--dc-shadow-lg);
}
.dc-content-card .thumb {
  height: 180px; background: var(--dc-primary-light); overflow: hidden;
}
.dc-content-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.dc-content-card .body { padding: 20px; }
.dc-content-card .cat {
  font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--dc-primary); letter-spacing: .5px;
}
.dc-content-card h3 {
  font-size: 17px; font-weight: 700; color: var(--dc-dark); margin: 6px 0 8px; line-height: 1.35;
}
.dc-content-card p {
  font-size: 13.5px; color: var(--dc-muted); margin: 0 0 14px; line-height: 1.5;
}
.dc-content-card a.read { font-size: 13px; font-weight: 600; color: var(--dc-primary); }

/* ---------- Empty state ---------- */
.dc-empty {
  text-align: center; padding: 60px 24px; color: var(--dc-muted);
}
.dc-empty i {
  font-size: 48px; opacity: .3; margin-bottom: 16px; display: block;
}
.dc-empty h3 { font-size: 18px; color: var(--dc-dark); margin: 0 0 8px; }
.dc-empty p { font-size: 14px; margin: 0 0 20px; }

/* ---------- Alert boxes ---------- */
.dc-alert {
  padding: 14px 18px; border-radius: 12px; font-size: 14px; margin-bottom: 20px;
  display: flex; align-items: flex-start; gap: 12px;
}
.dc-alert-info { background: #EFF6FF; color: #1E40AF; border: 1px solid #BFDBFE; }
.dc-alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.dc-alert-warning { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }

/* ---------- Footer ---------- */
.dc-footer {
  background: var(--dc-dark); color: #94A3B8; padding: 60px 0 0;
}
.dc-footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px;
}
.dc-footer-brand .dc-logo { color: #fff; margin-bottom: 16px; }
.dc-footer-brand p { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.dc-footer-social { display: flex; gap: 12px; }
.dc-footer-social a {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px;
  transition: background .2s;
}
.dc-footer-social a:hover { background: var(--dc-primary); }
.dc-footer h4 {
  color: #fff; font-size: 14px; font-weight: 700; margin: 0 0 18px; text-transform: uppercase;
  letter-spacing: .5px;
}
.dc-footer ul li { margin-bottom: 10px; }
.dc-footer ul a { font-size: 14px; color: #94A3B8; transition: color .2s; }
.dc-footer ul a:hover { color: #fff; }
.dc-footer-apps { display: flex; flex-direction: column; gap: 10px; }
.dc-footer-apps .dc-app-btn {
  background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.15);
}
.dc-footer-apps .dc-app-btn:hover { background: rgba(255,255,255,.18); color: #fff; }
.dc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
}
.dc-footer-bottom a { color: #94A3B8; margin-left: 16px; }
.dc-footer-bottom a:hover { color: #fff; }

/* ---------- Floating Promo ---------- */
.dc-float-promo {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: linear-gradient(135deg, var(--dc-primary), var(--dc-accent));
  color: #fff; border-radius: 16px; padding: 18px 22px; max-width: 300px;
  box-shadow: 0 12px 40px rgba(27,110,243,.4); animation: dcSlideIn .5s ease;
}
.dc-float-promo h4 { font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.dc-float-promo p { font-size: 13px; opacity: .9; margin: 0 0 12px; }
.dc-float-promo .dc-btn {
  background: #fff; color: var(--dc-primary); padding: 8px 16px; font-size: 13px;
}
.dc-float-promo .close-float {
  position: absolute; top: 8px; right: 12px; background: none; border: none;
  color: #fff; opacity: .7; cursor: pointer; font-size: 16px;
}
@keyframes dcSlideIn {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ---------- Preloader hide ---------- */
.preloader,
.cssload-preloader,
.cssload-preloader-box {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
body > .dc-logo { display: none; }

/* ---------- Admin ---------- */
body.dc-admin {
  font-family: var(--dc-font) !important;
  background: var(--dc-bg) !important;
  color: var(--dc-slate);
}
.dc-admin .page-wrapper { background: var(--dc-bg) !important; }
.dc-admin-sidebar {
  background: var(--dc-white) !important;
  border-right: 1px solid var(--dc-border);
  width: 260px;
}
.dc-admin-sidebar .sidebar-logo {
  padding: 20px 18px; border-bottom: 1px solid var(--dc-border);
}
.dc-admin-sidebar .sidebar-menu .sidebar-menu-item a {
  border-radius: 10px !important; margin: 2px 10px; font-weight: 500; color: var(--dc-slate) !important;
}
.dc-admin-sidebar .sidebar-menu .sidebar-menu-item a:hover,
.dc-admin-sidebar .sidebar-menu .sidebar-menu-item.active > a {
  background: var(--dc-primary-light) !important; color: var(--dc-primary) !important;
}
.dc-admin .main-wrapper { background: var(--dc-bg) !important; }
.dc-admin .header-wrapper,
.dc-admin .navbar-wrapper {
  background: var(--dc-white) !important;
  border-bottom: 1px solid var(--dc-border) !important;
  box-shadow: none !important;
}
.dc-admin .custom-card,
.dc-admin .card {
  background: var(--dc-white) !important;
  border: 1px solid var(--dc-border) !important;
  border-radius: var(--dc-radius) !important;
  box-shadow: var(--dc-shadow) !important;
}
.dc-admin .btn--base,
.dc-admin .btn-primary {
  background: linear-gradient(135deg, var(--dc-primary), var(--dc-accent)) !important;
  border: none !important; border-radius: 999px !important; font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(27,110,243,.3) !important;
}
.dc-admin .form--control,
.dc-admin .form-control {
  border: 1.5px solid var(--dc-border) !important;
  border-radius: 10px !important; background: var(--dc-bg) !important;
}
.dc-admin .form--control:focus,
.dc-admin .form-control:focus {
  border-color: var(--dc-primary) !important; background: #fff !important;
  box-shadow: 0 0 0 3px rgba(27,110,243,.12) !important;
}
.dc-admin .table thead th {
  background: var(--dc-bg) !important; color: var(--dc-muted) !important;
  font-size: 12px !important; text-transform: uppercase; letter-spacing: .4px;
  font-weight: 700 !important; border-bottom: 1px solid var(--dc-border) !important;
}
.dc-admin .table td {
  border-color: var(--dc-border) !important; vertical-align: middle;
}
.dc-admin .dashboard-header-wrapper .title,
.dc-admin h1, .dc-admin h2, .dc-admin h3, .dc-admin h4 {
  color: var(--dc-dark) !important; font-weight: 700 !important;
}

.dc-admin-auth {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(165deg, #F0F7FF 0%, #FFFFFF 50%, #F8FAFC 100%); padding: 24px;
}
.dc-admin-auth-card {
  width: 100%; max-width: 420px; background: #fff; border-radius: 20px;
  border: 1px solid var(--dc-border); box-shadow: var(--dc-shadow-lg); padding: 40px 36px;
}
.dc-admin-auth-card .logo { text-align: center; margin-bottom: 28px; }
.dc-admin-auth-card .logo img { height: 40px; }
.dc-admin-auth-card h3 {
  font-size: 22px; font-weight: 800; color: var(--dc-dark); text-align: center; margin: 0 0 6px;
}
.dc-admin-auth-card .sub {
  text-align: center; color: var(--dc-muted); font-size: 14px; margin-bottom: 28px;
}

/* ---------- Error pages ---------- */
.dc-error-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(165deg, #F0F7FF, #FFFFFF); text-align: center;
  padding: 40px 20px; font-family: var(--dc-font);
}
.dc-error-page .code {
  font-size: 96px; font-weight: 800; color: var(--dc-primary); line-height: 1; margin-bottom: 8px;
}
.dc-error-page h1 {
  font-size: 28px; font-weight: 800; color: var(--dc-dark); margin: 0 0 12px;
}
.dc-error-page p {
  color: var(--dc-muted); max-width: 420px; margin: 0 auto 28px;
}

/* ---------- Mail ---------- */
.dc-mail {
  font-family: Inter, system-ui, sans-serif; background: #F8FAFC; padding: 32px 16px;
}
.dc-mail-card {
  max-width: 560px; margin: 0 auto; background: #fff; border-radius: 16px;
  border: 1px solid #E2E8F0; overflow: hidden;
}
.dc-mail-header {
  background: linear-gradient(135deg, #1B6EF3, #0EA5E9); padding: 28px 32px; color: #fff;
}
.dc-mail-header h1 { margin: 0; font-size: 20px; font-weight: 700; }
.dc-mail-body { padding: 32px; color: #334155; font-size: 15px; line-height: 1.6; }
.dc-mail-body h2 { color: #0F172A; font-size: 18px; margin: 0 0 12px; }
.dc-mail-btn {
  display: inline-block; background: #1B6EF3; color: #fff !important;
  padding: 12px 28px; border-radius: 999px; text-decoration: none; font-weight: 600; margin: 16px 0;
}
.dc-mail-footer {
  padding: 20px 32px; background: #F8FAFC; font-size: 12px; color: #94A3B8;
  text-align: center; border-top: 1px solid #E2E8F0;
}

/* ---------- PDF ---------- */
.dc-pdf {
  font-family: DejaVu Sans, sans-serif; color: #334155; font-size: 12px;
}
.dc-pdf-header {
  border-bottom: 3px solid #1B6EF3; padding-bottom: 16px; margin-bottom: 24px;
}
.dc-pdf-header h1 { color: #1B6EF3; font-size: 22px; margin: 0; }
.dc-pdf table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.dc-pdf th, .dc-pdf td { border: 1px solid #E2E8F0; padding: 8px 12px; text-align: left; }
.dc-pdf th { background: #F0F7FF; color: #0F172A; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .dc-hero-grid, .dc-auth-page, .dc-contact-grid, .dc-dash-panels, .dc-promo-banner {
    grid-template-columns: 1fr !important;
  }
  .dc-auth-visual { display: none; }
  .dc-features-grid, .dc-stats, .dc-dash-cards { grid-template-columns: repeat(2, 1fr); }
  .dc-stats .dc-stat:nth-child(2n) { border-right: none; }
  .dc-stats .dc-stat:nth-child(-n+2) { border-bottom: 1px solid var(--dc-border); }
  .dc-steps, .dc-trust-grid, .dc-testimonials, .dc-help-cards { grid-template-columns: 1fr; }
  .dc-footer-grid { grid-template-columns: 1fr 1fr; }
  .dc-dash-layout { grid-template-columns: 1fr; }
  .dc-sidebar {
    position: fixed; left: -280px; top: 0; z-index: 200; width: 260px;
    transition: left .3s; box-shadow: var(--dc-shadow-lg); display: flex;
  }
  .dc-sidebar.open { left: 0; }
  .dc-sidebar-toggle { display: block; }
  .dc-form-grid { grid-template-columns: 1fr; }
  .dc-dash-body, .dc-dash-content { padding: 20px 16px; }
  .dc-dash-topbar { padding: 12px 16px; }
  .dc-hero-visual { align-items: center; }
  .dc-hero-script {
    align-self: center !important;
    text-align: center !important;
    transform: none !important;
  }
  .dc-hero-script::after {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 768px) {
  .dc-nav { display: none; }
  .dc-nav.show {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; padding: 16px 20px; border-bottom: 1px solid var(--dc-border);
    box-shadow: var(--dc-shadow);
  }
  .dc-mobile-toggle { display: block; }
  .dc-stats, .dc-features-grid, .dc-dash-cards { grid-template-columns: 1fr 1fr; }
  .dc-input-row { grid-template-columns: 1fr; }
  .dc-footer-grid { grid-template-columns: 1fr; }
  .dc-hero { padding: 28px 0 20px; }
  .dc-section { padding: 48px 0; }
  .dc-converter-card { max-width: 100%; }
}
@media (max-width: 480px) {
  .dc-stats, .dc-features-grid, .dc-dash-cards { grid-template-columns: 1fr; }
  .dc-header-actions .dc-btn-outline { display: none; }
}

/* =====================================================
   Auth pages – match design reference (register / login)
   ===================================================== */
.dc-auth-hero {
  text-align: center;
  padding: 40px 0 12px;
  background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 100%);
}
.dc-auth-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dc-primary);
  margin: 0 0 10px;
}
.dc-auth-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--dc-dark);
  margin: 0 0 12px;
  line-height: 1.2;
}
.dc-auth-hero h1 span { color: var(--dc-primary); }
.dc-auth-lead {
  font-size: 16px;
  color: var(--dc-muted);
  max-width: 520px;
  margin: 0 auto;
}

.dc-auth-main {
  padding: 24px 0 48px;
  background: #fff;
}
.dc-auth-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.dc-auth-visual-card {
  background: linear-gradient(165deg, #F0F7FF 0%, #FFFFFF 70%);
  border: 1px solid var(--dc-border);
  border-radius: 24px;
  padding: 36px 28px 28px;
  text-align: center;
  height: 100%;
  box-shadow: var(--dc-shadow);
}
.dc-auth-visual-card h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--dc-dark);
  margin: 0 0 8px;
  line-height: 1.15;
}
.dc-auth-visual-sub {
  font-size: 14px;
  color: var(--dc-muted);
  margin: 0 0 24px;
}
.dc-auth-phone {
  max-width: 260px;
  margin: 0 auto 16px;
}
.dc-auth-phone img {
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 20px 50px rgba(27, 110, 243, 0.18); */
}
.dc-auth-script {
  font-family: "Dancing Script", cursive;
  font-size: 22px;
  font-weight: 700;
  color: var(--dc-primary);
  margin: 8px 0 28px;
  line-height: 1.25;
}
.dc-auth-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--dc-border);
  padding-top: 20px;
  margin-top: 8px;
}
.dc-auth-stats .item {
  text-align: center;
}
.dc-auth-stats .icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  border-radius: 10px;
  background: var(--dc-primary-light);
  color: var(--dc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.dc-auth-stats strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--dc-dark);
}
.dc-auth-stats span {
  font-size: 11px;
  color: var(--dc-muted);
}

.dc-auth-form-card {
  background: #fff;
  border: 1px solid var(--dc-border);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--dc-shadow-lg);
  height: 100%;
}
.dc-auth-form-card .dc-tabs {
  display: flex;
  background: var(--dc-bg);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 24px;
}
.dc-auth-form-card .dc-tab {
  flex: 1;
  text-align: center;
  padding: 11px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--dc-muted);
  text-decoration: none;
  border: none;
  background: none;
}
.dc-auth-form-card .dc-tab.active {
  background: #fff;
  color: var(--dc-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.dc-auth-form-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dc-dark);
  margin: 0 0 6px;
}
.dc-auth-form-card .dc-subtitle {
  font-size: 14px;
  color: var(--dc-muted);
  margin: 0 0 24px;
}

.dc-auth-trust {
  background: var(--dc-bg);
  border-top: 1px solid var(--dc-border);
}

@media (max-width: 992px) {
  .dc-auth-split {
    grid-template-columns: 1fr;
  }
  .dc-auth-left { order: 2; }
  .dc-auth-right { order: 1; }
}

/* =====================================================
   Auth split – make left + right feel like ONE unit
   ===================================================== */
.dc-auth-main {
  padding: 16px 0 40px !important;
  /* background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 40%) !important; */
}
.dc-auth-split {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 !important;
  align-items: stretch !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
  background: #fff !important;
  border: 1px solid var(--dc-border) !important;
  border-radius: 28px !important;
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.08) !important;
  overflow: hidden !important;
}
.dc-auth-left,
.dc-auth-right {
  min-height: 100%;
}
.dc-auth-visual-card {
  background: linear-gradient(165deg, #F0F7FF 0%, #FFFFFF 75%) !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  height: 100% !important;
  padding: 40px 32px 32px !important;
}
.dc-auth-form-card {
  background: #fff !important;
  border: none !important;
  border-left: 1px solid var(--dc-border) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  height: 100% !important;
  padding: 36px 32px !important;
}
.dc-auth-hero {
  padding: 32px 0 20px !important;
  /* background: transparent !important; */
}

@media (max-width: 992px) {
  .dc-auth-split {
    grid-template-columns: 1fr !important;
    border-radius: 20px !important;
  }
  .dc-auth-form-card {
    border-left: none !important;
    border-top: 1px solid var(--dc-border) !important;
  }
  .dc-auth-left { order: 2; }
  .dc-auth-right { order: 1; }
}


/* ---------- Social auth buttons (Google / Apple) ---------- */
.dc-social-auth {
  margin-top: 22px;
}
.dc-social-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--dc-muted);
  font-size: 13px;
}
.dc-social-divider::before,
.dc-social-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--dc-border);
}
.dc-social-divider span {
  white-space: nowrap;
}
.dc-social-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dc-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--dc-border);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--dc-dark);
  transition: all .2s ease;
  text-decoration: none;
}
.dc-social-btn:hover {
  border-color: #cbd5e1;
  background: var(--dc-bg);
  color: var(--dc-dark);
  transform: translateY(-1px);
  box-shadow: var(--dc-shadow);
}
.dc-social-btn svg {
  flex-shrink: 0;
}
.dc-social-apple {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}
.dc-social-apple:hover {
  background: #1e293b;
  color: #fff;
  border-color: #1e293b;
}
@media (max-width: 480px) {
  .dc-social-buttons {
    grid-template-columns: 1fr;
  }
}

/* Converter – fixed AUD + receiver country select */
.dc-currency-fixed {
  min-width: 88px;
  justify-content: center;
  gap: 6px;
  cursor: default;
  user-select: none;
}
.dc-currency-select-wrap {
  padding: 0 !important;
  background: #fff !important;
  min-width: 140px;
  max-width: 180px;
}
.dc-currency-select {
  width: 100%;
  height: 100%;
  min-height: 52px;
  border: none;
  outline: none;
  background: transparent;
  font-weight: 700;
  font-size: 13px;
  color: var(--dc-dark);
  padding: 0 10px;
  cursor: pointer;
  font-family: inherit;
  appearance: auto;
}
.dc-currency-select:focus {
  outline: none;
}
#dcReceiveAmount {
  background: var(--dc-bg);
  cursor: default;
}

/* ===== Converter currency pills & select (clean UI) ===== */
.dc-currency-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 96px;
  padding: 0 14px;
  height: 100%;
  min-height: 52px;
  background: #F1F5F9;
  border-left: 1px solid var(--dc-border);
  font-weight: 800;
  font-size: 14px;
  color: var(--dc-dark);
  letter-spacing: 0.02em;
}
.dc-cur-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}
.dc-cur-emoji { font-size: 16px; line-height: 1; }
.dc-cur-code { font-weight: 800; }

.dc-currency-select-box {
  position: relative;
  min-width: 90px;
  max-width: 200px;
  height: 100%;
  min-height: 52px;
  background: #F8FAFC;
  border-left: 1px solid var(--dc-border);
  display: flex;
  align-items: stretch;
}
.dc-currency-select-box select {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 28px 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dc-dark);
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748B' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.dc-currency-select-box select:focus {
  background-color: #EEF5FF;
}

.dc-field-row input#dcSendAmount,
.dc-field-row input#dcReceiveAmount {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.dc-field-row input#dcReceiveAmount {
  background: #F8FAFC;
  color: var(--dc-dark);
}

/* =====================================================
   Smooth tab panels (Send / Track + Auth)
   Card height follows active tab (short for Track Money).
   .dc-converter-slot reserves Send-panel height so stats stay fixed.
   ===================================================== */
.dc-converter-slot {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* min-height is set by JS from the Send panel */
}
.dc-converter-card .dc-tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(6px);
}
.dc-converter-card .dc-tab-panel.is-active {
  display: block;
  animation: dcPanelIn 0.3s ease forwards;
}

/* Auth panels */
.dc-auth-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.dc-auth-panel.is-active {
  display: block;
  animation: dcPanelIn 0.4s ease forwards;
}
@keyframes dcPanelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tab button smooth underline / pill */
.dc-tabs .dc-tab {
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.dc-tabs .dc-tab:active {
  transform: scale(0.97);
}
.dc-converter-card .dc-tabs .dc-tab.active,
.dc-auth-form-card .dc-tabs .dc-tab.active {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Auth tab buttons (not links) */
.dc-auth-tabs .dc-tab {
  flex: 1;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  color: var(--dc-muted, #64748b);
  padding: 11px;
  border-radius: 10px;
}
.dc-auth-tabs .dc-tab.active {
  background: #fff;
  color: var(--dc-primary, #1B6EF3);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

/* =====================================================
   Float promo – attention-grabbing (hard to ignore)
   ===================================================== */
.dc-float-promo {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 9999 !important;
  background: linear-gradient(135deg, #1B6EF3, #0EA5E9) !important;
  color: #fff !important;
  border-radius: 18px !important;
  padding: 18px 22px !important;
  max-width: 300px !important;
  box-shadow:
    0 12px 40px rgba(27, 110, 243, 0.45),
    0 0 0 0 rgba(27, 110, 243, 0.5) !important;
  animation:
    dcFloatEnter 0.6s cubic-bezier(0.22, 1, 0.36, 1) both,
    dcFloatPulse 2.5s ease-in-out 0.6s infinite,
    dcFloatShake 2.5s ease-in-out 1s infinite !important;
}
.dc-float-promo::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 20px;
  background: linear-gradient(135deg, #60a5fa, #22d3ee, #1B6EF3);
  z-index: -1;
  opacity: 0.7;
  animation: dcFloatGlow 2s ease-in-out infinite alternate;
}
.dc-float-promo h4 {
  font-size: 16px !important;
  font-weight: 800 !important;
  margin: 0 0 6px !important;
  letter-spacing: 0.02em;
}
.dc-float-promo p {
  font-size: 13px !important;
  opacity: 0.95 !important;
  margin: 0 0 14px !important;
  line-height: 1.4;
}
.dc-float-promo .dc-btn {
  background: #fff !important;
  color: #1B6EF3 !important;
  font-weight: 700 !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  animation: dcBtnPulse 1.8s ease-in-out infinite;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15) !important;
}
.dc-float-promo .close-float {
  position: absolute !important;
  top: 8px !important;
  right: 12px !important;
  background: none !important;
  border: none !important;
  color: #fff !important;
  opacity: 0.75 !important;
  cursor: pointer !important;
  font-size: 16px !important;
  line-height: 1 !important;
}
.dc-float-promo .close-float:hover { opacity: 1 !important; }

@keyframes dcFloatEnter {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes dcFloatPulse {
  0%, 100% {
    box-shadow:
      0 12px 40px rgba(27, 110, 243, 0.45),
      0 0 0 0 rgba(27, 110, 243, 0.45);
    transform: translateY(0);
  }
  50% {
    box-shadow:
      0 16px 48px rgba(27, 110, 243, 0.55),
      0 0 0 12px rgba(27, 110, 243, 0);
    transform: translateY(-4px);
  }
}
@keyframes dcFloatShake {
  /* quiet most of the cycle, then a clear shake every ~2.5s */
  0%, 75% {
    transform: translateX(0) rotate(0deg);
  }
  80% {
    transform: translateX(-6px) rotate(-2.5deg);
  }
  85% {
    transform: translateX(6px) rotate(2.5deg);
  }
  90% {
    transform: translateX(-5px) rotate(-1.5deg);
  }
  95% {
    transform: translateX(4px) rotate(1deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes dcFloatGlow {
  from { opacity: 0.4; filter: blur(4px); }
  to { opacity: 0.85; filter: blur(8px); }
}
@keyframes dcBtnPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@media (max-width: 480px) {
  .dc-float-promo {
    left: 16px !important;
    right: 16px !important;
    max-width: none !important;
    bottom: 16px !important;
  }
}


.page-wrapper {
  min-height: 100vh; display: flex; justify-content: center; align-items: center; 
}