/* ============================================================
   الفنجان للصرافة — Bold FinTech Design System v3
   White + vibrant gradients (indigo / cyan / fuchsia).
   Radical redesign: geometric shapes, gradient headlines,
   glass surfaces, bold rounded components.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --primary: #6C5CE7;
  --primary-deep: #5A4BD1;
  --primary-light: #EEEAFC;
  --primary-glow: rgba(108, 92, 231, 0.20);

  --secondary: #00D2FF;
  --secondary-light: #E0F7FF;

  --accent: #FF5E9C;
  --accent-light: #FFE9F2;

  --ink: #171838;
  --text: #40436B;
  --muted: #7579A0;
  --faint: #A5A9CE;

  --bg: #F7F8FF;
  --surface: #FFFFFF;
  --surface-alt: #F3F4FF;
  --border: #E6E8F7;

  --success: #00B874;
  --success-bg: #DDF8EE;
  --warning: #FF9F1C;
  --warning-bg: #FFF3E0;
  --info: #2F6BFF;
  --info-bg: #E3ECFF;
  --danger: #FF3D6E;
  --danger-bg: #FFE4EB;
  --indigo: #6C5CE7;
  --indigo-bg: #EAE7FD;

  --grad-a: linear-gradient(135deg, #6C5CE7 0%, #8A7CFF 100%);
  --grad-b: linear-gradient(135deg, #00D2FF 0%, #6C5CE7 100%);
  --grad-c: linear-gradient(135deg, #FF5E9C 0%, #7B61FF 100%);
  --grad-d: linear-gradient(135deg, #171838 0%, #343780 100%);
  --grad-text: linear-gradient(90deg, #6C5CE7, #00C2FF);

  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(23, 24, 56, 0.05);
  --shadow-md: 0 10px 30px rgba(23, 24, 56, 0.08);
  --shadow-lg: 0 24px 60px rgba(23, 24, 56, 0.12);
  --shadow-primary: 0 12px 32px rgba(108, 92, 231, 0.32);
  --shadow-cyan: 0 12px 32px rgba(0, 210, 255, 0.30);

  --font: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: var(--primary-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { color: var(--ink); font-weight: 800; line-height: 1.35; }
::selection { background: var(--primary); color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.section-tint { background: linear-gradient(180deg, var(--surface-alt), var(--bg)); }
.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}

.grid { display: grid; gap: 24px; }
.grid-2 { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; gap: 24px; grid-template-columns: repeat(4, 1fr); }

.section-header { text-align: center; max-width: 660px; margin: 0 auto 48px; }
.section-header h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; letter-spacing: -0.5px; }
.section-header h2 span, .section-header .highlight {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section-header p { color: var(--muted); margin-top: 12px; font-size: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: 14px;
  font-family: var(--font); font-size: 15px; font-weight: 800;
  cursor: pointer; border: none; transition: all .25s ease; line-height: 1.4;
  text-decoration: none; white-space: nowrap; position: relative; overflow: hidden;
}
.btn::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 60%); transform: translateX(-120%); transition: transform .5s ease; }
.btn:hover::after { transform: translateX(120%); }
.btn-primary { background: var(--grad-a); color: #fff; box-shadow: var(--shadow-primary); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(108,92,231,.42); color: #fff; }
.btn-cyan { background: var(--grad-b); color: #fff; box-shadow: var(--shadow-cyan); }
.btn-cyan:hover { transform: translateY(-3px); color: #fff; }
.btn-outline { background: #fff; color: var(--ink); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary-deep); transform: translateY(-2px); }
.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border: 2px solid rgba(255,255,255,.35); backdrop-filter: blur(4px); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--primary-deep); }
.btn-ghost:hover { background: var(--primary-light); }
.btn-lg { padding: 17px 38px; font-size: 16px; border-radius: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: 11px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--grad-d); color: #c9cdf2;
  font-size: 12.5px; font-weight: 600; text-align: center;
  padding: 9px 0; letter-spacing: .2px; position: relative; overflow: hidden;
}
.topbar::before { content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; background: linear-gradient(90deg, transparent, rgba(0,210,255,.15), transparent); animation: topbarShine 6s linear infinite; }
@keyframes topbarShine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.topbar .highlight { color: #7DE9FF; font-weight: 800; }
.topbar span, .topbar { position: relative; z-index: 1; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: all .3s;
}
.header.scrolled { background: rgba(255,255,255,.92); border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--grad-a); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 22px;
  box-shadow: var(--shadow-primary); position: relative;
}
.logo-icon::after { content: ''; position: absolute; inset: 0; border-radius: 14px; border: 1px solid rgba(255,255,255,.4); }
.logo-text { font-size: 20px; font-weight: 900; color: var(--ink); line-height: 1.1; }
.logo-text span { display: block; font-size: 11px; font-weight: 700; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: .5px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 16px; border-radius: 12px;
  font-size: 14px; font-weight: 700; color: var(--text);
  transition: all .2s; position: relative;
}
.nav a:hover { color: var(--primary-deep); background: var(--primary-light); }
.nav a.active { color: #fff; background: var(--grad-a); box-shadow: var(--shadow-primary); }
.nav-badge {
  background: var(--secondary-light); color: #0076A6;
  font-size: 11px; font-weight: 800; padding: 5px 12px; border-radius: 50px;
  border: 1px solid rgba(0,210,255,.4); margin-inline-start: 6px;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 3px; background: var(--ink); border-radius: 3px; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 96px 0 84px; background: var(--bg); }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(560px 340px at 88% -10%, rgba(108,92,231,.18), transparent 60%),
    radial-gradient(480px 300px at 8% 12%, rgba(0,210,255,.16), transparent 60%),
    radial-gradient(420px 320px at 50% 110%, rgba(255,94,156,.12), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { text-align: center; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--primary-deep);
  border: 1px solid var(--border); padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 800; margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge svg { color: var(--secondary); }
.hero h1 { font-size: clamp(34px, 6.2vw, 60px); font-weight: 900; line-height: 1.25; color: var(--ink); letter-spacing: -1px; }
.hero h1 .highlight {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero .sub { font-size: clamp(16px, 2.4vw, 19px); color: var(--muted); max-width: 640px; margin: 20px auto 0; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.hero-stats { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 56px; }
.hero-stat {
  background: rgba(255,255,255,.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 18px;
  padding: 16px 30px; text-align: center; min-width: 150px;
  box-shadow: var(--shadow-sm);
}
.hero-stat strong { display: block; font-size: 26px; font-weight: 900; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat span { font-size: 13px; color: var(--muted); font-weight: 600; }

/* floating deco shapes */
.float-shape { position: absolute; border-radius: 30px; opacity: .8; animation: floatY 6s ease-in-out infinite; }
.float-shape.a { width: 64px; height: 64px; background: var(--grad-a); top: 16%; right: 8%; transform: rotate(18deg); box-shadow: var(--shadow-primary); }
.float-shape.b { width: 40px; height: 40px; background: var(--grad-b); bottom: 20%; left: 7%; transform: rotate(-14deg); border-radius: 12px; animation-delay: 1.2s; box-shadow: var(--shadow-cyan); }
.float-shape.c { width: 22px; height: 22px; background: var(--grad-c); top: 62%; right: 16%; border-radius: 50%; animation-delay: 2.4s; }
@keyframes floatY { 0%,100% { translate: 0 0; } 50% { translate: 0 -18px; } }

/* Page hero (inner pages) */
.page-hero { position: relative; overflow: hidden; padding: 68px 0 56px; background: var(--bg); }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(480px 280px at 90% 0%, rgba(108,92,231,.15), transparent 60%),
    radial-gradient(420px 260px at 5% 100%, rgba(0,210,255,.13), transparent 60%);
  pointer-events: none;
}
.page-hero-content { text-align: center; position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(30px, 4.6vw, 46px); font-weight: 900; letter-spacing: -0.5px; }
.page-hero h1 .highlight { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.page-hero p { color: var(--muted); font-size: 17px; max-width: 620px; margin: 14px auto 0; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm); transition: all .25s ease; position: relative;
}
.card-hover:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(108,92,231,.35); }
.card-hover:hover::before { opacity: 1; }
.card::before { content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 3px; border-radius: 0 0 8px 8px; background: var(--grad-a); opacity: 0; transition: opacity .25s; }
.card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14px; }

.icon-box {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0; color: #fff;
  box-shadow: var(--shadow-primary); position: relative;
}
.icon-box svg { width: 26px; height: 26px; }
.icon-box.gradient-primary { background: var(--grad-a); }
.icon-box.gradient-secondary { background: var(--grad-b); box-shadow: var(--shadow-cyan); }
.icon-box.gradient-accent { background: var(--grad-c); box-shadow: 0 12px 32px rgba(255,94,156,.32); }
.icon-box.gradient-ink { background: var(--grad-d); box-shadow: 0 12px 28px rgba(23,24,56,.28); }

.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 6px;
  transition: all .25s ease; text-decoration: none; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-a); opacity: 0; transition: opacity .25s; }
.service-card::after { content: ''; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(108,92,231,.10), transparent 70%); top: -60px; left: -60px; transition: transform .3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-card h3 { color: var(--ink); }
.service-card p { color: var(--muted); font-size: 14px; flex: 1; position: relative; z-index: 1; }
.service-link { color: var(--primary-deep); font-weight: 800; font-size: 14px; margin-top: 10px; display: inline-flex; align-items: center; gap: 6px; }

.feature-card { text-align: center; padding: 12px; }
.feature-card .icon-box { margin: 0 auto 16px; }
.feature-card h4 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: var(--muted); }

.info-card { display: flex; gap: 16px; align-items: flex-start; }
.info-card .icon-box { margin-bottom: 0; }
.info-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.info-card p { font-size: 14px; color: var(--muted); }

.premium-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.premium-card h4 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.premium-card p { font-size: 14px; color: var(--muted); }

/* ---------- Rate cards ---------- */
.rates-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.rate-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; text-align: center;
  transition: all .25s; position: relative; overflow: hidden;
}
.rate-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-a); }
.rate-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rate-pair { font-size: 17px; font-weight: 900; color: var(--ink); margin-bottom: 14px; }
.rate-values { display: flex; gap: 10px; justify-content: center; }
.rate-buy, .rate-sell { flex: 1; padding: 10px; border-radius: var(--radius-sm); font-weight: 800; font-size: 14px; }
.rate-buy { background: var(--success-bg); color: #008F5A; }
.rate-sell { background: var(--danger-bg); color: #D62A5B; }
.rate-buy span, .rate-sell span { display: block; font-size: 11px; font-weight: 700; opacity: .7; }

/* ---------- Steps ---------- */
.step { text-align: center; padding: 28px 18px; }
.step .num {
  width: 58px; height: 58px; border-radius: 18px;
  background: var(--grad-a); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; margin: 0 auto 16px;
  box-shadow: var(--shadow-primary); transform: rotate(-4deg);
}
.step:nth-child(2) .num { background: var(--grad-b); box-shadow: var(--shadow-cyan); transform: rotate(3deg); }
.step:nth-child(3) .num { background: var(--grad-c); box-shadow: 0 12px 32px rgba(255,94,156,.32); transform: rotate(-2deg); }
.step h4 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--muted); }

/* ---------- Forms ---------- */
.form-card { max-width: 780px; margin: 0 auto; }
.form-header { margin-bottom: 26px; }
.form-header h2 { font-size: 24px; font-weight: 900; }
.form-header p { color: var(--muted); font-size: 14px; margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 800; color: var(--ink); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 15px; color: var(--ink);
  background: var(--surface); transition: all .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow);
}
.form-group select { cursor: pointer; }
.form-divider {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 900; color: var(--primary-deep);
  margin: 28px 0 20px;
}
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1.5px; background: var(--border); }
.form-note { font-size: 12px; color: var(--faint); margin-top: 6px; }
.form-hint { display: none; }

.file-upload {
  border: 2px dashed rgba(108,92,231,.45); background: var(--primary-light);
  border-radius: var(--radius-sm); padding: 22px; text-align: center;
  cursor: pointer; color: var(--primary-deep); font-size: 13px; font-weight: 700;
  transition: all .2s;
}
.file-upload:hover { background: #e2dcfb; border-color: var(--primary); }
.file-preview { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.file-preview img { max-height: 70px; border-radius: 8px; border: 1px solid var(--border); }
.file-preview .file-chip { font-size: 11px; color: var(--muted); padding: 4px 10px; background: var(--surface-alt); border-radius: 6px; border: 1px solid var(--border); }

.checkbox-card {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer; transition: all .2s;
  background: var(--surface);
}
.checkbox-card .check {
  width: 24px; height: 24px; border-radius: 8px; flex-shrink: 0;
  border: 2px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all .2s; background: #fff;
}
.checkbox-card .check svg { width: 14px; height: 14px; opacity: 0; transition: opacity .2s; }
.checkbox-card.checked { border-color: var(--primary); background: var(--primary-light); }
.checkbox-card.checked .check { background: var(--grad-a); border-color: var(--primary); }
.checkbox-card.checked .check svg { opacity: 1; }
.checkbox-card span { font-size: 14px; font-weight: 600; color: var(--text); }

.calc-box { background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; }
.calc-box .label { font-size: 12px; font-weight: 700; color: var(--muted); display: block; margin-bottom: 2px; }
.calc-box .value { font-size: 18px; font-weight: 900; color: var(--ink); }
.calc-box .value.green { color: var(--success); }
.calc-box .value.red { color: var(--danger); }
.calc-box .value.gold { color: var(--primary-deep); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; }
.data-table { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.data-table table { width: 100%; border-collapse: collapse; min-width: 680px; }
.data-table th { background: var(--surface-alt); padding: 14px 16px; font-size: 12px; font-weight: 800; color: var(--muted); text-align: right; border-bottom: 1px solid var(--border); white-space: nowrap; }
.data-table td { padding: 14px 16px; font-size: 13px; color: var(--ink); border-bottom: 1px solid var(--surface-alt); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--surface-alt); }
.table-toolbar { display: flex; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--border); flex-wrap: wrap; align-items: center; }
.table-toolbar input, .table-toolbar select { padding: 9px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font); font-size: 13px; background: var(--surface); }
.table-toolbar input:focus, .table-toolbar select:focus { border-color: var(--primary); outline: none; }
.table-toolbar input { flex: 1; min-width: 200px; }

/* ---------- Status badges ---------- */
.status-badge { display: inline-flex; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 800; }
.status-badge.pending { background: var(--warning-bg); color: #C87A00; }
.status-badge.confirmed { background: var(--info-bg); color: var(--info); }
.status-badge.processing { background: var(--indigo-bg); color: var(--indigo); }
.status-badge.done { background: var(--success-bg); color: #008F5A; }
.status-badge.cancelled { background: var(--danger-bg); color: var(--danger); }
.status-badge-lg { display: inline-flex; padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 800; }
.status-badge-lg.pending { background: var(--warning-bg); color: #C87A00; }
.status-badge-lg.confirmed { background: var(--info-bg); color: var(--info); }
.status-badge-lg.processing { background: var(--indigo-bg); color: var(--indigo); }
.status-badge-lg.done { background: var(--success-bg); color: #008F5A; }
.status-badge-lg.cancelled { background: var(--danger-bg); color: var(--danger); }

/* ---------- Track timeline ---------- */
.track-steps { display: flex; justify-content: space-between; position: relative; margin: 34px 0; }
.track-line { position: absolute; top: 20px; left: 10%; right: 10%; height: 3px; background: var(--border); z-index: 0; }
.track-step { text-align: center; position: relative; z-index: 1; flex: 1; }
.track-step .circle {
  width: 40px; height: 40px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px; font-size: 14px; font-weight: 800;
  background: var(--surface-alt); border: 2px solid var(--border); color: var(--faint);
  transition: all .3s;
}
.track-step.done .circle { background: var(--grad-b); border-color: transparent; color: #fff; }
.track-step.active .circle { background: var(--grad-a); border-color: transparent; color: #fff; box-shadow: var(--shadow-primary); }
.track-step .label { font-size: 12px; font-weight: 600; color: var(--faint); }
.track-step.done .label { color: var(--success); font-weight: 800; }
.track-step.active .label { color: var(--primary-deep); font-weight: 800; }

/* ---------- CTA ---------- */
.cta-section {
  background: var(--grad-d); border-radius: var(--radius-lg);
  padding: 60px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,210,255,.35), transparent 70%);
  top: -120px; left: -80px; animation: floatY 7s ease-in-out infinite;
}
.cta-section::after {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,94,156,.3), transparent 70%);
  bottom: -120px; right: -60px; animation: floatY 7s ease-in-out infinite reverse;
}
.cta-section h2 { color: #fff; font-size: clamp(26px, 4vw, 36px); font-weight: 900; position: relative; }
.cta-section p { color: #b8bcf2; margin: 12px auto 28px; max-width: 540px; font-size: 15px; position: relative; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ---------- Countries ---------- */
.country-tag { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; font-weight: 700; font-size: 14px; color: var(--text); }
.country-tag .flag { width: 26px; height: 26px; border-radius: 8px; background: var(--danger-bg); color: var(--danger); display: flex; align-items: center; justify-content: center; }
.country-tag .flag svg { width: 14px; height: 14px; }

/* ---------- Footer ---------- */
.footer { background: var(--grad-d); color: #b8bcf2; padding: 68px 0 0; margin-top: 76px; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-a); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 46px; }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 800; margin-bottom: 18px; }
.footer-col p { font-size: 14px; line-height: 1.8; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: #b8bcf2; font-size: 14px; transition: color .2s; }
.footer-col ul a:hover { color: #7DE9FF; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 14px; }
.footer-brand .logo-icon { width: 40px; height: 40px; font-size: 18px; }
.contact-item { display: flex; gap: 10px; font-size: 14px; margin-bottom: 12px; color: #b8bcf2; }
.contact-item svg, .contact-item span:first-child { color: #7DE9FF; flex-shrink: 0; }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.08); color: #fff; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.social-links a:hover { background: var(--grad-b); transform: translateY(-3px); }
.social-links svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; text-align: center; font-size: 13px; color: #868bd6; }

/* ---------- Mobile bottom nav ---------- */
.mobile-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--border); padding: 8px 4px calc(8px + env(safe-area-inset-bottom)); justify-content: space-around; }
.mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 10.5px; font-weight: 700; color: var(--muted); }
.mobile-bottom-nav a span { font-size: 18px; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float { position: fixed; bottom: 24px; left: 24px; z-index: 95; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #1EBE57); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: transform .2s; }
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float .ping { position: absolute; inset: 0; border-radius: 50%; background: rgba(37,211,102,.5); animation: ping 2s infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .6; } 80%, 100% { transform: scale(1.7); opacity: 0; } }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; padding: 13px 26px; border-radius: 12px; font-size: 14px; font-weight: 700; z-index: 9999; opacity: 0; transition: all .3s; pointer-events: none; box-shadow: var(--shadow-lg); }
.toast.show { opacity: 1; bottom: 104px; }

/* ---------- Search / misc ---------- */
.search-area .card { max-width: 600px; margin: 0 auto; text-align: center; }
.success-banner { background: linear-gradient(135deg, #DDF8EE, #F0FFF9); border: 1px solid #A9EDCF; border-radius: var(--radius); padding: 24px; text-align: center; max-width: 600px; margin: 0 auto 24px; }
.success-banner h2 { color: #006B44; font-size: 20px; margin-bottom: 4px; }
.success-banner p { color: #006B44; font-size: 14px; }
.order-id { font-size: 26px; font-weight: 900; color: #008F5A; letter-spacing: 1px; direction: ltr; background: #fff; display: inline-block; padding: 8px 32px; border-radius: 12px; border: 1px solid #A9EDCF; margin-top: 10px; }

/* ---------- Admin ---------- */
.admin-body { background: var(--bg); }
.admin-wrapper { display: flex; min-height: 100vh; }
.sidebar { width: 264px; background: var(--surface); border-left: 1px solid var(--border); padding: 24px 16px; display: flex; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; z-index: 100; }
.sidebar .logo-wrap { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 900; color: var(--ink); margin-bottom: 36px; text-decoration: none; }
.nav-btn { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 12px; font-size: 14px; font-weight: 700; color: var(--muted); cursor: pointer; border: none; background: none; width: 100%; text-align: right; font-family: var(--font); transition: all .2s; margin-bottom: 4px; text-decoration: none; }
.nav-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-btn:hover, .nav-btn.active { background: var(--grad-a); color: #fff; box-shadow: var(--shadow-primary); }
.nav-btn.logout { margin-top: auto; color: var(--danger); }
.nav-btn.logout:hover { background: var(--danger-bg); color: var(--danger); box-shadow: none; }
.admin-main { flex: 1; padding: 32px 40px; margin-right: 264px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 12px; }
.admin-header h1 { font-size: 26px; font-weight: 900; }
.admin-header .user-info { font-size: 13px; color: var(--muted); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 30px; }
.stat-card { background: var(--surface); border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); }
.stat-card .num { font-size: 26px; font-weight: 900; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card .label { font-size: 13px; color: var(--muted); margin-top: 4px; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.section-actions { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; flex-wrap: wrap; gap: 12px; }
.section-actions h2 { font-size: 21px; font-weight: 900; }
.rate-card-adm { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.rate-card-adm .pair { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.rate-card-adm .inputs { display: flex; gap: 12px; }
.rate-card-adm .inputs > div { flex: 1; }
.rate-card-adm label { font-size: 11px; font-weight: 700; color: var(--muted); display: block; margin-bottom: 4px; }
.rate-card-adm input { width: 100%; padding: 8px 10px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font); font-size: 14px; font-weight: 700; }
.rate-card-adm input:focus { border-color: var(--primary); outline: none; }
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.settings-card { background: var(--surface); border-radius: var(--radius); padding: 26px; border: 1px solid var(--border); }
.settings-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 18px; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.settings-card h3 svg { width: 20px; height: 20px; color: var(--primary); }
.settings-card .field { margin-bottom: 14px; }
.settings-card .field label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 4px; }
.settings-card .field input, .settings-card .field textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font); font-size: 14px; transition: all .2s; background: var(--surface); }
.settings-card .field input:focus, .settings-card .field textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px var(--primary-glow); }
.settings-card .field textarea { min-height: 80px; resize: vertical; }
.settings-card .file-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1.5px dashed var(--primary); border-radius: var(--radius-sm); background: var(--primary-light); color: var(--primary-deep); font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font); }
.logo-preview { width: 80px; height: 80px; border-radius: 12px; border: 1px solid var(--border); overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--surface-alt); margin: 8px 0; }
.logo-preview img { max-width: 100%; max-height: 100%; object-fit: contain; }
.status-select { padding: 8px 12px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); font-family: var(--font); font-size: 13px; font-weight: 700; background: var(--surface); cursor: pointer; }
.status-select:focus { border-color: var(--primary); outline: none; }
.hamburger-admin { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger-admin span { display: block; width: 22px; height: 3px; background: var(--ink); border-radius: 4px; }
.sidebar-overlay { display: none; }

/* ---------- Admin detail ---------- */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.detail-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.detail-card h3 { font-size: 15px; font-weight: 800; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.detail-card h3 svg { width: 18px; height: 18px; color: var(--primary); }
.detail-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--surface-alt); font-size: 14px; }
.detail-row:last-child { border-bottom: none; }
.detail-row .label { color: var(--muted); font-weight: 600; }
.detail-row .value { color: var(--ink); font-weight: 700; }
.file-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--primary-deep); }

/* ---------- Animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.fade-up { animation: fadeUp .55s ease both; }
.d1 { animation-delay: .05s; } .d2 { animation-delay: .1s; } .d3 { animation-delay: .15s; } .d4 { animation-delay: .2s; }

/* ---------- Rate ticker (marquee) ---------- */
.ticker { background: var(--surface); border-block: 1px solid var(--border); overflow: hidden; padding: 11px 0; position: relative; }
.ticker-track { display: flex; gap: 30px; width: max-content; animation: tickerScroll 32s linear infinite; direction: ltr; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--muted); white-space: nowrap; }
.ticker-item b { color: var(--ink); }
.ticker-item .tb { color: var(--success); font-weight: 800; }
.ticker-item .ts { color: var(--danger); font-weight: 800; }
.ticker-item .tsep { color: var(--border); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Split hero (2 columns) ---------- */
.split-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.split-hero .hero-content { text-align: right; max-width: none; margin: 0; }
.split-hero .hero-content h1 { font-size: clamp(34px, 4.6vw, 52px); }
.split-hero .sub { margin: 18px 0 0; }
.split-hero .hero-buttons { justify-content: flex-start; margin-top: 32px; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-trust .stars { color: #FFB020; font-size: 15px; letter-spacing: 2px; }
.hero-trust .stars span { color: var(--faint); }
.hero-trust small { color: var(--muted); font-size: 12.5px; font-weight: 600; }
.hero-trust .av { display: flex; }
.hero-trust .av i { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff; background: var(--grad-a); color: #fff; font-style: normal; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-left: -8px; }
.hero-trust .av i:nth-child(2) { background: var(--grad-b); }
.hero-trust .av i:nth-child(3) { background: var(--grad-c); }

/* Rates widget panel */
.rates-widget {
  background: rgba(255,255,255,.82); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 26px; padding: 26px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.rates-widget::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-a); }
.rates-widget .widget-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.rates-widget .widget-head h3 { font-size: 17px; font-weight: 900; }
.widget-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; color: var(--success); }
.widget-live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: ping 2s infinite; }
.rates-widget .widget-sub { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.widget-rate { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px dashed var(--border); }
.widget-rate:last-child { border-bottom: none; }
.widget-rate .pair { font-weight: 800; color: var(--ink); font-size: 14px; }
.widget-rate .vals { display: flex; gap: 8px; }
.widget-rate .vals span { padding: 5px 12px; border-radius: 9px; font-size: 12px; font-weight: 800; }
.widget-rate .vals .wb { background: var(--success-bg); color: #008F5A; }
.widget-rate .vals .ws { background: var(--danger-bg); color: #D62A5B; }
.widget-rate .vals em { font-style: normal; font-size: 10px; opacity: .6; display: block; }
.widget-foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; align-items: center; }
.widget-foot a { font-weight: 800; }

/* ---------- Bento services grid ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(160px, auto); gap: 20px; }
.bento-tile {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  text-decoration: none; transition: all .25s ease;
}
.bento-tile h3 { font-size: 18px; font-weight: 900; }
.bento-tile p { font-size: 13.5px; color: var(--muted); }
.bento-tile .b-icon { width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 6px; box-shadow: var(--shadow-primary); }
.bento-tile .b-icon svg { width: 24px; height: 24px; }
.bento-tile .b-link { font-weight: 800; font-size: 13px; display: inline-flex; align-items: center; gap: 5px; margin-top: 4px; }
.bento-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bento-tile.big { grid-column: span 2; grid-row: span 2; justify-content: flex-end; }
.bento-tile.big .b-icon { width: 62px; height: 62px; border-radius: 18px; }
.bento-tile.big h3 { font-size: 24px; }
.bento-tile.big p { font-size: 15px; max-width: 90%; }
.bento-tile.grad-a { background: var(--grad-a); border: none; }
.bento-tile.grad-a h3, .bento-tile.grad-a p, .bento-tile.grad-a .b-link { color: #fff; }
.bento-tile.grad-a .b-icon { background: rgba(255,255,255,.2); box-shadow: none; }
.bento-tile.grad-b { background: var(--grad-b); border: none; }
.bento-tile.grad-b h3, .bento-tile.grad-b p, .bento-tile.grad-b .b-link { color: #fff; }
.bento-tile.grad-b .b-icon { background: rgba(255,255,255,.2); box-shadow: none; }
.bento-tile.grad-c { background: var(--grad-c); border: none; }
.bento-tile.grad-c h3, .bento-tile.grad-c p, .bento-tile.grad-c .b-link { color: #fff; }
.bento-tile.grad-c .b-icon { background: rgba(255,255,255,.22); box-shadow: none; }
.bento-tile .b-glow { position: absolute; width: 160px; height: 160px; border-radius: 50%; filter: blur(10px); opacity: .35; background: rgba(255,255,255,.5); top: -60px; left: -40px; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--grad-d); border-radius: var(--radius-lg); padding: 38px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; overflow: hidden; }
.stats-band::before { content: ''; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(0,210,255,.4), transparent 70%); top: -100px; right: -60px; }
.stats-band .sb { text-align: center; color: #fff; position: relative; z-index: 1; }
.stats-band .sb strong { font-size: 32px; font-weight: 900; display: block; }
.stats-band .sb span { font-size: 13px; opacity: .85; }

/* ---------- Alternating feature rows ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-row .fr-visual { order: 1; }
.feature-row .fr-text { order: 2; }
.feature-row.reverse .fr-visual { order: 2; }
.feature-row.reverse .fr-text { order: 1; }
.fr-visual {
  background: linear-gradient(160deg, var(--surface-alt), var(--bg));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px; display: grid; gap: 14px; position: relative; overflow: hidden;
}
.fr-visual .fr-chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: 50px; padding: 8px 16px; font-size: 12px; font-weight: 800; color: var(--primary-deep); width: max-content; box-shadow: var(--shadow-sm); }
.fr-visual .fr-chip svg { width: 16px; height: 16px; color: var(--secondary); }
.fr-visual h3 { font-size: 24px; font-weight: 900; }
.fr-visual p { color: var(--muted); font-size: 15px; }
.fr-visual ul { display: grid; gap: 10px; }
.fr-visual ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text); }
.fr-visual ul li i { width: 20px; height: 20px; border-radius: 7px; background: var(--success-bg); color: var(--success); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-style: normal; font-weight: 900; flex-shrink: 0; }
.fr-text { display: grid; gap: 18px; }
.fr-text h3 { font-size: 26px; font-weight: 900; }
.fr-text h3 .highlight { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.fr-text p { color: var(--muted); font-size: 15px; line-height: 1.9; }
.fr-text .fr-list { display: grid; gap: 12px; }
.fr-text .fr-list div { display: flex; gap: 12px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 16px; font-size: 14px; }
.fr-text .fr-list i { width: 22px; height: 22px; border-radius: 8px; background: var(--grad-a); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-style: normal; font-size: 12px; font-weight: 900; flex-shrink: 0; }

/* ---------- Rates horizontal scroll ---------- */
.rate-scroll { display: flex; gap: 16px; overflow-x: auto; padding: 4px 4px 16px; scroll-snap-type: x mandatory; }
.rate-scroll .rate-card { min-width: 240px; scroll-snap-align: start; }
.rate-scroll::-webkit-scrollbar { height: 8px; }
.rate-scroll::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 8px; }

/* ---------- Steps row (horizontal) ---------- */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps-row .step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ---------- Split form + sticky sidebar ---------- */
.form-split { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.form-main .card { padding: 34px; }
.form-side { position: sticky; top: 96px; display: grid; gap: 16px; }
.side-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.side-card h4 { font-size: 15px; font-weight: 900; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.side-card h4 svg { width: 18px; height: 18px; color: var(--primary); }
.side-card .side-rate { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--border); font-size: 13.5px; }
.side-card .side-rate:last-child { border-bottom: none; }
.side-card .side-rate b { color: var(--ink); }
.side-card .side-sum { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--border); }
.side-card .side-sum .lab { font-size: 13px; color: var(--muted); font-weight: 700; }
.side-card .side-sum .val { font-size: 18px; font-weight: 900; color: var(--ink); }
.side-card .side-sum .val.green { color: var(--success); }
.side-card .side-sum .val.red { color: var(--danger); }
.side-card .side-note { margin-top: 14px; background: var(--primary-light); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 12.5px; color: var(--primary-deep); font-weight: 700; display: flex; gap: 8px; align-items: flex-start; }
.side-card .side-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.side-steps { counter-reset: side; }
.side-steps div { display: flex; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--border); font-size: 13.5px; color: var(--text); align-items: flex-start; }
.side-steps div:last-child { border-bottom: none; }
.side-steps div::before { counter-increment: side; content: counter(side); width: 22px; height: 22px; border-radius: 8px; background: var(--grad-a); color: #fff; font-size: 12px; font-weight: 900; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split-hero { grid-template-columns: 1fr; gap: 40px; }
  .split-hero .hero-content { text-align: center; }
  .split-hero .hero-buttons { justify-content: center; }
  .split-hero .hero-trust { justify-content: center; }
  .rates-widget { max-width: 560px; margin: 0 auto; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-tile.big { grid-column: span 2; grid-row: span 1; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .form-split { grid-template-columns: 1fr; }
  .form-side { position: static; }
}
@media (max-width: 900px) {
  .settings-grid { grid-template-columns: 1fr; }
  .sidebar { transform: translateX(100%); transition: transform .3s; }
  .sidebar.open { transform: translateX(0); box-shadow: var(--shadow-lg); }
  .sidebar-overlay { display: block; position: fixed; inset: 0; background: rgba(23,24,56,.4); z-index: 99; opacity: 0; pointer-events: none; transition: opacity .3s; }
  .sidebar-overlay.show { opacity: 1; pointer-events: auto; }
  .admin-main { margin-right: 0; padding: 24px 16px; }
  .hamburger-admin { display: flex; }
}
@media (max-width: 768px) {
  .nav { position: fixed; inset: 74px 0 auto 0; background: #fff; flex-direction: column; align-items: stretch; padding: 12px; border-bottom: 1px solid var(--border); transform: translateY(-140%); transition: transform .3s; z-index: 99; box-shadow: var(--shadow-md); }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 16px; }
  .nav-badge { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .section { padding: 56px 0; }
  .hero { padding: 56px 0 52px; }
  .float-shape { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 64px; }
  .whatsapp-float { bottom: 80px; }
  .detail-grid { grid-template-columns: 1fr; }
  .toast.show { bottom: 84px; }
  .bento { grid-template-columns: 1fr; }
  .bento-tile.big { grid-column: span 1; }
  .stats-band { grid-template-columns: 1fr 1fr; padding: 30px 20px; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .steps-row { grid-template-columns: 1fr; }
  .ticker { display: none; }
}
@media (min-width: 769px) { .toast.show { bottom: 104px; } }