/* =============================================
   VELKI BET AGENT — COMPLETE REDESIGN 2026
   Theme: Terracotta / Burnt Orange
   ============================================= */

/* ── CSS VARIABLES ─────────────────────────── */
:root {
  --terra:       #C85A2A;
  --terra-dark:  #9E3F18;
  --terra-light: #E07A4F;
  --terra-pale:  #F2C4A8;
  --cream:       #FAF4EE;
  --ink:         #1A0E08;
  --ink-mid:     #3D2317;
  --ink-soft:    #6B4535;
  --sand:        #E8D5C4;
  --sand-light:  #F5EDE4;
  --gold:        #D4A853;
  --gold-light:  #F0CA7A;
  --white:       #FFFFFF;
  --shadow:      rgba(26,14,8,0.14);
  --shadow-heavy: rgba(26,14,8,0.32);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Hind Siliguri', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--terra); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 14px; z-index: 9999;
  text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

.sr-only, .sr-h2 {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--terra); border-radius: 99px; }

/* ── HEADER ─────────────────────────────────── */
.top-head {
  background: var(--ink);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px var(--shadow-heavy);
}
.brand-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(200,90,42,0.3);
}
.brand-logo-wrap a { display: flex; align-items: center; text-decoration: none; }
.brand-logo-wrap img { height: 60px; width: auto; filter: brightness(1.1); }

.cs-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terra); color: var(--white);
  padding: 9px 18px; border-radius: var(--radius-xl);
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  text-decoration: none; letter-spacing: 0.3px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 10px rgba(200,90,42,0.35); white-space: nowrap;
}
.cs-btn:hover { background: var(--terra-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,90,42,0.5); }
.cs-btn .fa-whatsapp { font-size: 16px; }

.menu-row {
  display: flex; gap: 0; padding: 0 16px;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.menu-row::-webkit-scrollbar { display: none; }
.menu-row a {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(250,244,238,0.6); text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 11px 16px; border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition); white-space: nowrap;
}
.menu-row a:hover { color: var(--terra-pale); border-bottom-color: rgba(200,90,42,0.4); }
.menu-row a.active { color: var(--terra-light); border-bottom-color: var(--terra); }

/* ── HERO ───────────────────────────────────── */
.hero-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 50%, #2A1208 100%);
  padding: 52px 32px 48px;
  border-bottom: 3px solid var(--terra);
}
.hero-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,90,42,0.18) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(212,168,83,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-glow { display: none; }

.hero-text-content {
  position: relative; z-index: 1;
  max-width: 1020px; margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(200,90,42,0.2); border: 1px solid rgba(200,90,42,0.45);
  color: var(--terra-pale); font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--radius-xl); margin-bottom: 20px;
}
.hero-badge i { font-size: 13px; color: var(--gold-light); }

.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(30px, 5.5vw, 52px); color: var(--cream);
  line-height: 1.15; letter-spacing: 0.5px; margin-bottom: 14px;
}
.hero-accent { color: var(--terra-light); }

.hero-subtitle {
  font-family: var(--font-body); font-size: clamp(13px, 1.8vw, 16px);
  color: rgba(250,244,238,0.65); margin-bottom: 28px; line-height: 1.6;
}

.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.hero-stat {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(250,244,238,0.75); font-family: var(--font-body); font-weight: 600;
  font-size: 13px; padding: 8px 18px; border-radius: var(--radius-xl);
}
.hero-stat i { color: var(--terra-light); font-size: 14px; }


.container { max-width: 1020px; margin: 0 auto; padding: 0 16px; }

/* ── TRUST STRIP ────────────────────────────── */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 0;
  background: var(--terra-dark); overflow: hidden;
}
.trust-strip span {
  display: flex; align-items: center; gap: 7px;
  color: var(--cream); font-size: 12px; font-weight: 600;
  padding: 10px 16px; flex: 1; min-width: 200px;
  border-right: 1px solid rgba(255,255,255,0.12); letter-spacing: 0.2px;
}
.trust-strip span:last-child { border-right: none; }
.trust-strip i { color: var(--gold-light); font-size: 14px; }

/* ── TABLE CARD ─────────────────────────────── */
.table-card {
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 4px 30px var(--shadow); margin-bottom: 28px; overflow: hidden;
}
.table-card h1 {
  font-family: var(--font-display); font-size: clamp(18px, 3.5vw, 28px);
  font-weight: 900; color: var(--ink); padding: 24px 24px 0;
  line-height: 1.3; letter-spacing: 0.3px;
}
.intro-text {
  font-size: 14px; color: var(--ink-soft); line-height: 1.7;
  padding: 12px 24px 20px; border-bottom: 1px solid var(--sand);
}
.intro-text strong { color: var(--terra-dark); }

/* ── SEARCH ─────────────────────────────────── */
.search-form { padding: 20px 24px; background: var(--sand-light); }
.search-wrap { position: relative; display: flex; align-items: center; max-width: 640px; }
.search-icon {
  position: absolute; left: 14px; color: var(--terra); font-size: 16px;
  z-index: 1; pointer-events: none;
}
#searchInput {
  width: 100%; padding: 15px 16px 15px 44px;
  border: 2px solid var(--sand); border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
  background: var(--white); outline: none;
  height: 52px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
#searchInput:focus { border-color: var(--terra); box-shadow: 0 0 0 3px rgba(200,90,42,0.12); }
#searchInput::placeholder { color: var(--ink-soft); opacity: 0.7; }
.search-wrap button {
  padding: 0 26px; background: var(--terra); color: var(--white);
  border: none; border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
  transition: background var(--transition); white-space: nowrap;
  height: 52px; display: flex; align-items: center; justify-content: center;
}
.search-wrap button:hover { background: var(--terra-dark); }

/* ── TABLE ──────────────────────────────────── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
#agentTable { width: 100%; border-collapse: collapse; font-size: 13.5px; }
#agentTable thead tr { background: var(--ink); }
#agentTable thead th {
  padding: 13px 14px; color: var(--terra-pale);
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase; text-align: left; border: none; white-space: nowrap;
}
#agentTable thead th:first-child { padding-left: 20px; }
#agentTable tbody tr { border-bottom: 1px solid var(--sand); transition: background var(--transition); }
#agentTable tbody tr:hover { background: var(--sand-light); }
#agentTable tbody tr:last-child { border-bottom: none; }
#agentTable tbody td { padding: 13px 14px; vertical-align: middle; color: var(--ink-mid); }
#agentTable tbody td:first-child { padding-left: 20px; }
#agentTable tbody tr:nth-child(even) { background: var(--cream); }
#agentTable tbody tr:nth-child(even):hover { background: var(--sand-light); }

/* ── CHIPS ──────────────────────────────────── */
.type-chip {
  display: inline-flex; align-items: center; padding: 5px 16px;
  border-radius: 999px; font-family: var(--font-display);
  font-weight: 700; font-size: 12px; letter-spacing: 0.5px;
  text-transform: uppercase; white-space: nowrap;
  border: 2px solid; box-shadow: none;
}

.chip-super {
  background: linear-gradient(135deg, #FFD166 0%, #FFA733 100%);
  color: #7A3800;
  border-color: #E8860A;
  box-shadow: 0 2px 8px rgba(255,167,51,0.45);
}

.chip-master {
  background: #FFF3E0;
  color: #C85A2A;
  border-color: #D4884A;
}

.chip-admin {
  background: #FFF8E7;
  color: #B8700A;
  border-color: #D4A853;
}

.chip-subadmin {
  background: #FFF3E0;
  color: #9E4A1A;
  border-color: #C87040;
}

/* ── WA BTN ─────────────────────────────────── */
.wa-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; background: #25D366; color: white;
  border-radius: 50%; text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 4px 14px rgba(37,211,102,0.45); }

.phone { color: var(--terra); text-decoration: none; font-weight: 700; font-size: 15px; transition: color var(--transition); }
.phone:hover { color: var(--terra-dark); text-decoration: underline; }

.complain {
  display: inline-flex; align-items: center; gap: 5px; padding: 7px 16px;
  background: var(--terra); border: none; border-radius: var(--radius-xl);
  color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(200,90,42,0.35); white-space: nowrap;
}
.complain:hover { background: var(--terra-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(200,90,42,0.5); }

/* ── SKELETON ───────────────────────────────── */
.skeleton-cell {
  height: 16px;
  background: linear-gradient(90deg, var(--sand) 25%, var(--sand-light) 50%, var(--sand) 75%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: var(--radius-sm);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── INFO SECTIONS ──────────────────────────── */
.info-section { margin-bottom: 20px; }
.info-section-inner {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: 0 2px 20px var(--shadow); border-left: 5px solid var(--terra);
}
.info-section-inner h2 {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: clamp(17px, 3vw, 22px);
  font-weight: 900; color: var(--ink); margin-bottom: 16px; letter-spacing: 0.3px;
}
.info-section-inner h2 i { color: var(--terra); }
.info-section-inner p { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.75; }
.info-section-inner p strong { color: var(--ink); }

.how-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 16px 0; }
.how-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.step-num {
  display: flex; align-items: center; justify-content: center;
  min-width: 32px; height: 32px; background: var(--terra); color: var(--white);
  border-radius: 50%; font-family: var(--font-display); font-weight: 700; font-size: 15px;
  flex-shrink: 0; margin-top: 2px;
}
.how-list li strong { color: var(--ink); }

.info-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(200,90,42,0.07); border: 1px solid rgba(200,90,42,0.2);
  border-radius: var(--radius-md); padding: 14px 16px;
  font-size: 13.5px; color: var(--ink-mid); line-height: 1.65;
}
.info-note i { color: var(--terra); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.info-note strong { color: var(--terra-dark); display: inline; }
.info-note p { margin: 0; padding: 0; font-size: 13.5px; color: var(--ink-mid); line-height: 1.65; }
.disclaimer-text { font-size: 12px !important; color: var(--ink-soft) !important; opacity: 0.75; margin-top: 10px !important; }

/* ── FAQ ────────────────────────────────────── */
.faq-section { background: var(--ink); padding: 48px 0; margin-top: 8px; }
.faq-section h2 {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: clamp(20px, 4vw, 30px);
  font-weight: 900; color: var(--cream); margin-bottom: 28px; letter-spacing: 0.5px;
}
.faq-section h2 i { color: var(--terra); }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(440px, 1fr)); gap: 14px; }

details {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(200,90,42,0.2);
  border-radius: var(--radius-md); overflow: hidden; transition: background var(--transition);
}
details[open] { background: rgba(200,90,42,0.08); border-color: rgba(200,90,42,0.4); }
summary {
  padding: 16px 18px; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 14px;
  color: var(--cream); list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; transition: color var(--transition);
}
summary:hover { color: var(--terra-pale); }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--terra); flex-shrink: 0; }
details[open] summary::after { content: '−'; }
details > div { padding: 14px 18px 16px; font-size: 13.5px; color: rgba(250,244,238,0.7); line-height: 1.75; border-top: 1px solid rgba(200,90,42,0.15); }
details > div p strong { color: var(--terra-pale); }

/* ── FOOTER ─────────────────────────────────── */
.mini-footer { background: var(--ink-mid); border-top: 3px solid var(--terra); padding: 28px 0 16px; }
.footer-inner {
  max-width: 1020px; margin: 0 auto; padding: 0 16px;
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
}
.footer-brand img { height: 60px; width: auto; opacity: 0.85; }
.footer-copy { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 6px; font-size: 13px; color: rgba(250,244,238,0.6); }
.footer-copy strong { color: var(--cream); }
.footer-sep { opacity: 0.4; }
.footer-domain { color: var(--terra-pale); text-decoration: none; }
.footer-domain:hover { color: var(--terra-light); }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px; }
.footer-nav a { color: rgba(250,244,238,0.5); text-decoration: none; font-size: 12px; transition: color var(--transition); }
.footer-nav a:hover { color: var(--terra-pale); }
.footer-nav span { color: rgba(250,244,238,0.2); }
.footer-desc { font-size: 11.5px; color: rgba(250,244,238,0.35); max-width: 560px; line-height: 1.6; }
.footer-updated { text-align: center; padding: 12px 16px 0; font-size: 12px; color: rgba(250,244,238,0.6); }
.footer-updated strong { color: var(--terra-pale); }

main.container { padding-top: 0; padding-bottom: 32px; }

/* ── ADMIN PANEL ────────────────────────────── */
#dmToggle {
  position: fixed; bottom: 20px; right: 20px;
  width: 46px; height: 46px; background: var(--terra-dark);
  color: var(--white); border: none; border-radius: 50%;
  font-size: 18px; cursor: pointer; box-shadow: 0 4px 16px var(--shadow-heavy); z-index: 200;
  display: flex; align-items: center; justify-content: center; transition: background var(--transition), transform var(--transition);
}
#dmToggle:hover { background: var(--terra); transform: scale(1.08); }
#dmPanel {
  position: fixed; bottom: 76px; right: 20px; width: 340px; max-height: 72vh;
  background: var(--ink); border: 1px solid rgba(200,90,42,0.25); border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px var(--shadow-heavy); z-index: 200; overflow-y: auto; display: none;
  padding: 18px; color: var(--cream); font-size: 13px;
}
#dmPanel.show { display: block; }
#dmPanel label { color: rgba(250,244,238,0.7); font-size: 12px; display: block; margin-bottom: 4px; }
#dmPanel input, #dmPanel select, #dmPanel textarea {
  width: 100%; padding: 8px 10px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,90,42,0.2); border-radius: var(--radius-sm);
  color: var(--cream); font-family: var(--font-body); font-size: 13px; margin-bottom: 10px;
  outline: none; transition: border-color var(--transition);
}
#dmPanel input:focus, #dmPanel select:focus, #dmPanel textarea:focus { border-color: var(--terra); }
#dmPanel button {
  padding: 8px 14px; background: var(--terra); color: var(--white); border: none;
  border-radius: var(--radius-sm); font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.5px; cursor: pointer; transition: background var(--transition);
}
#dmPanel button:hover { background: var(--terra-light); }

.dm-section-title {
  font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--terra-pale); margin: 14px 0 8px;
  border-bottom: 1px solid rgba(200,90,42,0.2); padding-bottom: 6px;
}
#dmStats { color: var(--terra-pale); font-size: 12px; margin-bottom: 10px; }
.dm-tab-row { display: flex; gap: 6px; margin-bottom: 10px; }
.dm-tab-row button { flex: 1; background: rgba(255,255,255,0.06); color: rgba(250,244,238,0.6); }
.dm-tab-row button.active, .dm-tab-row button[aria-pressed="true"] { background: var(--terra); color: var(--white); }
.dm-multi-row { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto; gap: 6px; margin-bottom: 6px; }
.dm-multi-row input { margin-bottom: 0; }
.dm-row-remove { background: rgba(239,68,68,0.8) !important; padding: 8px 8px !important; }
.dm-row-remove:hover { background: #ef4444 !important; }
.dm-delete-empty { color: rgba(250,244,238,0.4); font-size: 12px; text-align: center; padding: 12px; }
.dm-delete-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,90,42,0.2); border-radius: var(--radius-sm); padding: 12px; margin-bottom: 8px; }
.dm-delete-meta { font-size: 12px; color: rgba(250,244,238,0.6); margin-bottom: 8px; }
.dm-delete-action { background: rgba(239,68,68,0.8) !important; }
.dm-delete-action:hover { background: #ef4444 !important; }
.dm-edit-form { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dm-edit-form > div { display: flex; flex-direction: column; }
.dm-edit-actions { margin-top: 10px; }
.dm-edit-save { background: #22c55e !important; }
.dm-edit-save:hover { background: #16a34a !important; }
.dm-change-item { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 12px; color: rgba(250,244,238,0.6); }
.dm-change-item strong { color: var(--cream); }
.dm-backup-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,90,42,0.15); border-radius: var(--radius-sm); padding: 10px; margin-bottom: 6px; }
.dm-backup-meta { font-size: 12px; color: rgba(250,244,238,0.6); margin-bottom: 6px; }
.dm-backup-meta strong { color: var(--cream); display: block; }
.dm-backup-actions { display: flex; gap: 6px; }
.dm-backup-actions button { flex: 1; padding: 6px 8px !important; font-size: 11px !important; }
#dmBulkAllList label.row {
  display: grid; grid-template-columns: auto 1fr 1fr 1fr 1fr; gap: 8px; align-items: center;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 12px; cursor: pointer; color: rgba(250,244,238,0.7);
}
#dmBulkAllList label.row:hover { color: var(--cream); }
#dmBulkAllList .empty { font-size: 12px; color: rgba(250,244,238,0.4); text-align: center; padding: 12px; }
.dm-multi-block { display: none; }
.dm-multi-block.active { display: block; }
#dmUndoToast {
  display: none; position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%);
  background: var(--ink); border: 1px solid var(--terra); border-radius: var(--radius-md);
  padding: 10px 16px; color: var(--cream); font-size: 13px;
  box-shadow: 0 4px 20px var(--shadow-heavy); z-index: 300;
}
#dmUndoToast.show { display: flex; gap: 10px; align-items: center; }
#dmUndoToast button { background: var(--terra) !important; border: none; cursor: pointer; padding: 4px 10px !important; border-radius: var(--radius-sm); color: white; font-weight: 700; font-size: 12px !important; }
.dm-dash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.dm-dash-item { background: rgba(200,90,42,0.12); border: 1px solid rgba(200,90,42,0.2); border-radius: var(--radius-sm); padding: 10px 8px; text-align: center; }
.dm-dash-val { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--terra-light); }
.dm-dash-key { font-size: 10px; color: rgba(250,244,238,0.5); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.table-card, .info-section-inner { animation: fadeInUp 0.45s ease both; }
.info-section:nth-child(2) .info-section-inner { animation-delay: 0.08s; }
.info-section:nth-child(3) .info-section-inner { animation-delay: 0.15s; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .hero-card { padding: 36px 20px 32px; }
  .hero-title { font-size: clamp(24px, 6vw, 36px); }
  .trust-strip span { min-width: 160px; font-size: 11px; padding: 9px 12px; }
  .table-card h1 { padding: 18px 16px 0; }
  .intro-text { padding: 10px 16px 16px; }
  .search-form { padding: 16px; }
  .info-section-inner { padding: 20px 16px; border-left-width: 4px; }
  .faq-grid { grid-template-columns: 1fr; }
  #dmPanel { width: calc(100vw - 32px); right: 16px; }
  #agentTable thead { display: none; }
  #agentTable tbody tr { display: block; background: var(--white) !important; margin-bottom: 12px; border-radius: var(--radius-md) !important; border: 1px solid var(--sand) !important; box-shadow: 0 2px 10px var(--shadow); padding: 4px 0; overflow: hidden; }
  #agentTable tbody tr:hover { background: var(--sand-light) !important; }
  #agentTable tbody td { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; border-bottom: 1px solid var(--sand); font-size: 13px; }
  #agentTable tbody td:last-child { border-bottom: none; }
  #agentTable tbody td::before { content: attr(data-label); font-family: var(--font-display); font-weight: 700; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--terra); min-width: 90px; }
  .table-wrap { padding: 12px; }
}
@media (max-width: 480px) {
  .brand-row { padding: 10px 14px; }
  .cs-btn { padding: 8px 12px; font-size: 12px; }
  .menu-row a { font-size: 11px; padding: 10px 12px; }
  .faq-section { padding: 32px 0; }
  .dm-multi-row { grid-template-columns: 1fr 1fr; }
}
