/* ETM Platform — navy/teal design language. Functional base; refined in design pass. */
:root{
  --etm-navy:#062F66; --etm-navy-d:#062F66; --etm-teal:#00A640; --etm-teal-d:#00A640;
  --etm-ink:#1f2937; --etm-muted:#64748b; --etm-line:#e2e8f0; --etm-bg:#f1f5f9;
  --etm-card:#fff; --etm-radius:14px; --etm-shadow:0 1px 3px rgba(16,24,40,.06),0 1px 2px rgba(16,24,40,.04);
}
.etm-wrap{max-width:1560px;margin:0 auto;padding:28px 28px;color:var(--etm-ink);font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;}
.etm-wrap *{box-sizing:border-box;}
.etm-card{background:var(--etm-card);border:1px solid var(--etm-line);border-radius:var(--etm-radius);padding:22px 24px;box-shadow:var(--etm-shadow);margin-bottom:20px;}
.etm-card h2{font-size:17px;margin:0 0 16px;color:var(--etm-navy);}
.etm-muted{color:var(--etm-muted);}
.etm-ico{width:18px;height:18px;flex:0 0 auto;vertical-align:middle;}
.etm-ico-lg{width:42px;height:42px;color:#cbd5e1;}

/* Buttons */
.etm-btn{display:inline-flex;align-items:center;gap:8px;font-weight:600;font-size:14px;line-height:1;padding:11px 18px;border-radius:10px;border:1px solid transparent;cursor:pointer;text-decoration:none;transition:.15s;}
.etm-btn .etm-ico{width:17px;height:17px;}
.etm-btn-teal{background:var(--etm-teal);color:#fff;}.etm-btn-teal:hover{background:var(--etm-teal-d);color:#fff;}
.etm-btn-navy{background:var(--etm-navy);color:#fff;}.etm-btn-navy:hover{background:var(--etm-navy-d);color:#fff;}
.etm-btn-ghost{background:#fff;color:var(--etm-navy);border-color:var(--etm-line);}.etm-btn-ghost:hover{border-color:var(--etm-navy);}
.etm-btn-block{width:100%;justify-content:center;}

/* Forms */
.etm-field{margin-bottom:14px;}
.etm-field label{display:block;font-size:13px;font-weight:600;color:#334155;margin-bottom:6px;}
.etm-field input[type=text],.etm-field input[type=email],.etm-field input[type=tel],.etm-field input[type=url],.etm-field input[type=number],.etm-field input[type=password],.etm-field input[type=search],.etm-field textarea,.etm-field select,.etm-directory select,.etm-directory input[type=search]{
  width:100%;padding:10px 12px;border:1px solid var(--etm-line);border-radius:9px;font-size:14px;font-family:inherit;background:#fff;color:var(--etm-ink);}
.etm-field textarea{resize:vertical;}
.etm-field input:focus,.etm-field textarea:focus,.etm-field select:focus{outline:none;border-color:var(--etm-teal);box-shadow:0 0 0 3px rgba(0,166,64,.12);}
.etm-hint{font-size:12px;color:var(--etm-muted);margin:4px 0 0;}
.etm-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:0 18px;}
.etm-form-cell.etm-col-2,.etm-field.etm-field-textarea,.etm-field.etm-field-regions,.etm-field.etm-field-checkboxes,.etm-field.etm-field-services,.etm-field.etm-field-image{grid-column:1/-1;}
.etm-checkboxes{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:6px 14px;}
.etm-check,.etm-radio{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:500;color:#334155;cursor:pointer;}
.etm-radios{display:flex;gap:16px;flex-wrap:wrap;}
.etm-toggle{display:flex;align-items:center;gap:10px;font-size:14px;margin:8px 0;cursor:pointer;}
.etm-form-actions{display:flex;align-items:center;gap:14px;margin-top:4px;}
.etm-form-status{font-size:13px;font-weight:600;}
.etm-form-status.is-ok{color:var(--etm-teal);}.etm-form-status.is-err{color:#b32d2e;}

/* Notices */
.etm-notice{padding:12px 16px;border-radius:10px;font-size:14px;display:flex;gap:8px;align-items:center;margin-bottom:16px;}
.etm-notice-warn{background:#fef3c7;color:#92400e;}
.etm-avatar-field{display:flex;align-items:center;gap:14px;}
.etm-avatar-preview{width:72px;height:72px;border-radius:50%;overflow:hidden;background:var(--etm-bg);display:flex;align-items:center;justify-content:center;font-size:11px;color:var(--etm-muted);}
.etm-avatar-preview img{width:100%;height:100%;object-fit:cover;}

/* Auth */
.etm-auth{max-width:460px;}.etm-auth-wide{max-width:720px;}
.etm-auth-card h1{font-size:22px;color:var(--etm-navy);margin:0 0 18px;}
.etm-auth-alt{font-size:13px;margin:12px 0 0;color:var(--etm-muted);}
.etm-typepick{border:none;padding:0;margin:0 0 18px;}
.etm-typepick legend{font-weight:600;font-size:14px;margin-bottom:10px;}
.etm-typepick-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.etm-typecard{position:relative;cursor:pointer;}
.etm-typecard input{position:absolute;opacity:0;}
.etm-typecard-body{display:block;border:1.5px solid var(--etm-line);border-radius:12px;padding:14px;transition:.15s;}
.etm-typecard-body .etm-ico{color:var(--etm-teal);width:22px;height:22px;}
.etm-typecard-body strong{display:block;font-size:14px;margin:6px 0 2px;color:var(--etm-navy);}
.etm-typecard-body em{font-style:normal;font-size:12px;color:var(--etm-muted);}
.etm-typecard input:checked + .etm-typecard-body{border-color:var(--etm-teal);background:#f0fdfa;}

/* Dashboard */
.etm-dashboard{display:grid;grid-template-columns:248px 1fr;gap:24px;align-items:start;}
.etm-dash-side{background:var(--etm-navy);border-radius:var(--etm-radius);padding:18px 14px;position:sticky;top:20px;}
.etm-dash-user{display:flex;gap:12px;align-items:center;padding:6px 8px 16px;border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:12px;}
.etm-dash-user img{width:44px;height:44px;border-radius:50%;object-fit:cover;}
.etm-dash-user strong{display:block;color:#fff;font-size:14px;}
.etm-badge-pill{display:inline-block;font-size:11px;color:#cbd5e1;margin-top:3px;}
.etm-dash-nav{display:flex;flex-direction:column;gap:2px;}
.etm-dash-nav a{display:flex;align-items:center;gap:11px;padding:11px 12px;border-radius:9px;color:#cbd5e1;text-decoration:none;font-size:14px;font-weight:500;transition:.12s;}
.etm-dash-nav a .etm-ico{width:18px;height:18px;}
.etm-dash-nav a:hover{background:rgba(255,255,255,.08);color:#fff;}
.etm-dash-nav a.is-active{background:var(--etm-teal);color:#fff;}
.etm-nav-count{margin-left:auto;background:#e11d48;color:#fff;font-size:11px;font-style:normal;font-weight:700;border-radius:10px;padding:1px 7px;min-width:18px;text-align:center;box-shadow:0 0 0 2px rgba(255,255,255,.15);}
.etm-nav-logout{margin-top:8px;border-top:1px solid rgba(255,255,255,.12);padding-top:14px!important;}
.etm-dash-main{min-width:0;}
.etm-tab-head{display:flex;justify-content:space-between;align-items:flex-start;gap:16px;margin-bottom:18px;}
.etm-tab-head h1{font-size:22px;color:var(--etm-navy);margin:0 0 4px;}

/* Stats */
.etm-stat-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:16px;margin-bottom:20px;}
.etm-stat-card{background:#fff;border:1px solid var(--etm-line);border-radius:var(--etm-radius);padding:18px 20px;box-shadow:var(--etm-shadow);}
.etm-stat-num{display:block;font-size:30px;font-weight:700;color:var(--etm-navy);line-height:1;}
.etm-stat-lbl{font-size:13px;color:var(--etm-muted);}
.etm-quick-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:10px;}
.etm-quick-grid a{display:flex;align-items:center;gap:10px;padding:14px;border:1px solid var(--etm-line);border-radius:10px;text-decoration:none;color:var(--etm-navy);font-weight:600;font-size:14px;}
.etm-quick-grid a:hover{border-color:var(--etm-teal);background:#f0fdfa;}
.etm-quick-grid .etm-ico{color:var(--etm-teal);}
.etm-upsell{display:flex;justify-content:space-between;align-items:center;gap:20px;background:linear-gradient(120deg,#f0fdfa,#fff);border-color:#99f6e4;}
.etm-upsell h2{margin-bottom:6px;}

/* Progress */
.etm-progress{display:flex;align-items:center;gap:12px;margin-bottom:16px;font-size:13px;color:var(--etm-muted);}
.etm-progress-bar{flex:1;height:8px;background:var(--etm-line);border-radius:99px;overflow:hidden;}
.etm-progress-bar span{display:block;height:100%;background:var(--etm-teal);}

/* Threads */
.etm-thread-layout{display:grid;grid-template-columns:300px 1fr;gap:18px;align-items:start;}
.etm-thread-list{list-style:none;margin:0;padding:0;border:1px solid var(--etm-line);border-radius:var(--etm-radius);overflow:hidden;background:#fff;}
.etm-thread-list li a{display:block;padding:13px 15px;border-bottom:1px solid var(--etm-line);text-decoration:none;color:var(--etm-ink);}
.etm-thread-list li.is-open a{background:#f0fdfa;border-left:3px solid var(--etm-teal);}
.etm-thread-list strong{display:block;font-size:14px;}
.etm-thread-status{display:inline-block;font-size:11px;text-transform:capitalize;color:var(--etm-muted);margin:3px 0;}
.etm-thread-snip{display:block;font-size:12px;color:var(--etm-muted);}
.etm-thread-msgs{display:flex;flex-direction:column;gap:10px;margin:16px 0;max-height:440px;overflow:auto;}
.etm-msg{max-width:78%;}
.etm-msg.is-mine{margin-left:auto;text-align:right;}
.etm-msg-bubble{background:#f1f5f9;padding:10px 14px;border-radius:12px;font-size:14px;display:inline-block;text-align:left;}
.etm-msg.is-mine .etm-msg-bubble{background:var(--etm-teal);color:#fff;}
.etm-msg-time{font-size:11px;color:var(--etm-muted);display:block;margin-top:2px;}
.etm-reply-form textarea{width:100%;}
.etm-reply-form{display:flex;flex-direction:column;gap:10px;}
.etm-reply-form button{align-self:flex-start;}

/* Plans */
.etm-plan-current{display:flex;justify-content:space-between;align-items:center;}
.etm-plan-price{font-size:24px;font-weight:700;color:var(--etm-navy);}
.etm-plan-price span{font-size:14px;font-weight:500;color:var(--etm-muted);}
.etm-plan-grid,.etm-pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px;}
.etm-plan-option,.etm-pricing-card{border:1px solid var(--etm-line);border-radius:var(--etm-radius);padding:20px;text-align:center;}
.etm-pricing-card.is-featured,.etm-plan-option.is-current{border-color:var(--etm-teal);box-shadow:0 0 0 2px rgba(0,166,64,.15);}
.etm-plan-tag{display:inline-block;background:#f0fdfa;color:var(--etm-teal-d);font-size:12px;font-weight:700;padding:4px 10px;border-radius:99px;}
.etm-status-chip,.etm-chip-status{display:inline-flex;gap:6px;align-items:center;font-size:13px;font-weight:600;padding:6px 12px;border-radius:99px;}
.etm-substatus-active,.etm-status-chip{background:#f0fdfa;color:var(--etm-teal-d);}
.etm-substatus-failed,.etm-substatus-cancelled{background:#fef2f2;color:#b32d2e;}

/* Profile page */
.etm-profile-hero{display:flex;gap:22px;align-items:center;}
.etm-hero-avatar img{width:96px;height:96px;border-radius:18px;object-fit:cover;}
.etm-hero-badge,.etm-sidebar-badge{display:inline-flex;gap:7px;align-items:center;font-size:12px;font-weight:700;padding:5px 11px;border-radius:99px;background:#eef2f6;color:var(--etm-navy);}
.etm-badge-verified,.etm-badge-training,.etm-badge-claimed{background:#f0fdfa;color:var(--etm-teal-d);}
.etm-badge-premium{background:#c8102e;color:#fff;border-color:#c8102e;}
.etm-badge-premium .etm-ico{color:#ffce3a;}
.etm-badge-premium,
.etm-hero-badge.etm-badge-premium,
.etm-sidebar-badge.etm-badge-premium,
.etm-vbadge-premium:not(.etm-map-card){
  background:rgba(200,16,46,.82) !important;
  color:#fff4f6 !important;
  border-color:rgba(255,151,166,.65) !important;
}
.etm-hero-badge.etm-badge-premium,
.etm-sidebar-badge.etm-badge-premium{
  background:rgba(200,16,46,.82) !important;
  color:#fff4f6 !important;
  border-color:rgba(255,151,166,.65) !important;
}
.etm-badge-premium .etm-ico,
.etm-hero-badge.etm-badge-premium .etm-ico,
.etm-sidebar-badge.etm-badge-premium .etm-ico,
.etm-vbadge-premium .etm-vbadge-svg{
  color:#ffe4e9 !important;
  stroke-width:2.3px !important;
}
/* Free / unclaimed members: muted, dull grey badges sitewide (not a premium look) */
.etm-badge-free,.etm-badge-unclaimed,.etm-vbadge.etm-vbadge-free,.etm-vbadge.etm-vbadge-unclaimed,
.etm-hero-badge.etm-badge-free,.etm-hero-badge.etm-badge-unclaimed,
.etm-sidebar-badge.etm-badge-free,.etm-sidebar-badge.etm-badge-unclaimed,
.etm-badge-pill.etm-badge-free,.etm-badge-pill.etm-badge-unclaimed{
  background:#eef1f6 !important;color:#8a97a8 !important;border-color:#dfe5ee !important;box-shadow:none !important;
}
.etm-hero-main h1{margin:8px 0 4px;font-size:26px;color:var(--etm-navy);}
.etm-hero-tagline{color:var(--etm-muted);margin:0 0 8px;}
.etm-hero-meta{display:flex;gap:16px;flex-wrap:wrap;font-size:13px;color:var(--etm-muted);}
.etm-hero-meta span{display:inline-flex;align-items:center;gap:5px;}
.etm-hero-services{list-style:none;display:flex;gap:14px;flex-wrap:wrap;padding:0;margin:12px 0 0;}
.etm-hero-services li{display:inline-flex;align-items:center;gap:6px;font-size:13px;font-weight:600;color:var(--etm-navy);}
.etm-hero-services .etm-ico{color:var(--etm-teal);width:15px;height:15px;}
.etm-profile-grid{display:grid;grid-template-columns:1fr 320px;gap:24px;align-items:start;margin-top:20px;}
.etm-prose{font-size:15px;line-height:1.7;color:#334155;}
.etm-tick-list{list-style:none;padding:0;margin:0;display:grid;gap:8px;}
.etm-tick-list li{display:flex;gap:9px;align-items:flex-start;font-size:14px;}
.etm-tick-list .etm-ico{color:var(--etm-teal);margin-top:1px;}

/* Sidebar */
.etm-sidebar{position:sticky;top:20px;background:#fff;border:1px solid var(--etm-line);border-radius:var(--etm-radius);padding:20px;box-shadow:var(--etm-shadow);}
.etm-sidebar-badge{margin-bottom:14px;}
.etm-facts{list-style:none;margin:0 0 16px;padding:0;display:grid;gap:11px;}
.etm-facts li{display:grid;grid-template-columns:20px 1fr;gap:8px;font-size:13px;align-items:start;}
.etm-facts .etm-ico{color:var(--etm-teal);grid-row:span 2;}
.etm-row-label{color:var(--etm-muted);font-size:12px;}
.etm-row-val{font-weight:600;color:var(--etm-ink);word-break:break-word;}
.etm-socials{display:flex;gap:8px;margin-bottom:16px;}
.etm-socials a{color:var(--etm-navy);}
.etm-socials a:hover{color:var(--etm-teal);}
.etm-upgrade-note{font-size:13px;color:var(--etm-muted);}
.etm-sharelink{margin-top:14px;font-size:12px;}
.etm-copy{display:flex;gap:6px;margin-top:6px;}
.etm-copy input{flex:1;font-size:12px;padding:7px 9px;border:1px solid var(--etm-line);border-radius:8px;}
.etm-copy-btn{background:var(--etm-navy);color:#fff;border:none;border-radius:8px;padding:0 10px;cursor:pointer;}

/* Region map */
.etm-regionmap{display:flex;gap:18px;align-items:flex-start;flex-wrap:wrap;}
.etm-regionmap svg{width:230px;height:auto;}
.etm-region-pills{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:6px;}
.etm-region-pills li{display:inline-flex;align-items:center;gap:7px;font-size:13px;font-weight:600;color:var(--etm-navy);}
.etm-region-pills li:before{content:"";width:10px;height:10px;border-radius:3px;background:var(--etm-teal);}

/* Directory */
.etm-dir-head h1{font-size:24px;color:var(--etm-navy);margin:0 0 4px;}
.etm-dir-count{font-size:14px;color:var(--etm-muted);}
.etm-clear{color:var(--etm-teal);margin-left:8px;}
.etm-dir-layout{display:grid;grid-template-columns:250px 1fr;gap:22px;align-items:start;margin-top:18px;}
.etm-dir-filters{background:#fff;border:1px solid var(--etm-line);border-radius:var(--etm-radius);padding:18px;position:sticky;top:20px;}
.etm-filter-block{margin-bottom:14px;}
.etm-filter-block label{display:block;font-size:12px;font-weight:700;color:var(--etm-navy);margin-bottom:6px;text-transform:uppercase;letter-spacing:.03em;}
.etm-card-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:18px;}
.etm-listing-card{background:#fff;border:1px solid var(--etm-line);border-radius:var(--etm-radius);padding:18px;box-shadow:var(--etm-shadow);display:flex;flex-direction:column;gap:12px;}
.etm-listing-top{display:flex;gap:12px;align-items:flex-start;}
.etm-listing-top img{width:50px;height:50px;border-radius:11px;object-fit:cover;}
.etm-listing-top h3{margin:0;font-size:16px;}
.etm-listing-top h3 a{color:var(--etm-navy);text-decoration:none;}
.etm-listing-loc{font-size:12px;color:var(--etm-muted);display:flex;align-items:center;gap:4px;margin:3px 0 0;}
.etm-chip-status{margin-left:auto;font-size:11px;}
.etm-chip-status.is-unclaimed{background:#f1f5f9;color:var(--etm-muted);}
.etm-listing-bio{font-size:13px;color:#475569;margin:0;}
.etm-listing-chips{list-style:none;display:flex;flex-wrap:wrap;gap:6px;padding:0;margin:0;}
.etm-listing-chips li{font-size:11px;background:#f1f5f9;color:#475569;padding:4px 9px;border-radius:99px;}
.etm-listing-actions{display:flex;gap:8px;margin-top:auto;}
.etm-listing-actions .etm-btn{flex:1;justify-content:center;padding:9px 10px;font-size:13px;}
.etm-empty{text-align:center;padding:48px 24px;color:var(--etm-muted);}
.etm-empty .etm-ico-lg{margin-bottom:10px;}

/* Credential chips / flags */
.etm-badge-chips{display:flex;flex-wrap:wrap;gap:8px;}
.etm-cred-chip{display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:600;background:#f0fdfa;color:var(--etm-teal-d);padding:6px 11px;border-radius:8px;border:1px solid #99f6e4;}
.etm-cred-chip .etm-ico{width:14px;height:14px;}
.etm-detail-label{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.03em;color:var(--etm-muted);margin:16px 0 7px;}
.etm-flag-list{list-style:none;padding:0;margin:12px 0 0;display:grid;gap:7px;}
.etm-flag-list li{display:flex;gap:8px;align-items:center;font-size:14px;font-weight:600;color:var(--etm-navy);}
.etm-flag-list .etm-ico{color:var(--etm-teal);width:16px;height:16px;}

/* Reviews */
.etm-review{border-top:1px solid var(--etm-line);padding:14px 0;}
.etm-review:first-of-type{border-top:none;}
.etm-review-stars{display:flex;gap:2px;color:#f59e0b;}
.etm-review-stars .etm-ico{width:15px;height:15px;fill:#f59e0b;}
.etm-review-by{font-size:12px;color:var(--etm-muted);font-weight:600;}

/* Request page */
.etm-request-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:30px;align-items:start;}
.etm-request-intro h1{font-size:28px;color:var(--etm-navy);}
.etm-pricing-head{text-align:center;margin-bottom:22px;}
.etm-pricing-head h1{font-size:28px;color:var(--etm-navy);}
.etm-pricing-section{margin-bottom:30px;}
.etm-pricing-section h2{display:flex;align-items:center;gap:8px;color:var(--etm-navy);}
.etm-pricing-price{font-size:26px;font-weight:700;color:var(--etm-navy);margin:6px 0 14px;}
.etm-pricing-price span{font-size:14px;font-weight:500;color:var(--etm-muted);}

/* Dashboard header (per-group) */
.etm-dash-header{display:flex;gap:20px;align-items:center;background:#fff;border:1px solid var(--etm-line);border-radius:var(--etm-radius);padding:20px 24px;box-shadow:var(--etm-shadow);margin-bottom:20px;position:relative;overflow:hidden;}
.etm-dash-header:before{content:"";position:absolute;inset:0 auto 0 0;width:5px;background:var(--etm-teal);}
.etm-dash-header-op:before{background:var(--etm-navy);}
.etm-dash-header-tp:before{background:#7c3aed;}
.etm-dh-avatar img{width:80px;height:80px;border-radius:16px;object-fit:cover;}
.etm-dh-main{flex:1;min-width:0;}
.etm-dh-badge{display:inline-flex;gap:6px;align-items:center;font-size:11px;font-weight:700;padding:4px 10px;border-radius:99px;background:#eef2f6;color:var(--etm-navy);}
.etm-dh-name{font-size:22px;color:var(--etm-navy);margin:7px 0 2px;}
.etm-dh-tagline{color:var(--etm-muted);margin:0 0 6px;font-size:14px;}
.etm-dh-meta{display:flex;gap:14px;flex-wrap:wrap;font-size:13px;color:var(--etm-muted);margin-bottom:8px;}
.etm-dh-meta span{display:inline-flex;gap:5px;align-items:center;}
.etm-dh-meta .etm-ico{width:15px;height:15px;color:var(--etm-teal);}
.etm-dh-regions{list-style:none;display:flex;gap:6px;flex-wrap:wrap;padding:0;margin:0;}
.etm-dh-regions li{font-size:11px;font-weight:600;background:#f0fdfa;color:var(--etm-teal-d);padding:3px 9px;border-radius:99px;}
.etm-dh-regions .etm-dh-more{background:#eef2f6;color:var(--etm-muted);}
.etm-dh-side{display:flex;flex-direction:column;align-items:center;gap:8px;flex:0 0 auto;}
.etm-dh-ring{position:relative;text-align:center;}
.etm-dh-ring svg{width:56px;height:56px;}
.etm-dh-ring span{display:block;font-size:11px;color:var(--etm-muted);}
.etm-btn-sm{padding:7px 12px;font-size:12px;border-radius:8px;}

/* Repeater */
.etm-repeater-rows{display:flex;flex-direction:column;gap:8px;margin-bottom:10px;}
.etm-repeater-row{display:flex;gap:8px;align-items:center;}
.etm-repeater-row input{flex:1;padding:10px 12px;border:1px solid var(--etm-line);border-radius:9px;font-size:14px;}
.etm-repeater-del{background:#fef2f2;color:#b32d2e;border:none;border-radius:8px;width:38px;height:38px;cursor:pointer;display:flex;align-items:center;justify-content:center;flex:0 0 auto;}
.etm-rot45{transform:rotate(45deg);}

/* Mini list / hero CTA */
.etm-hero-cta{display:flex;justify-content:space-between;align-items:center;gap:20px;background:linear-gradient(120deg,var(--etm-navy),#28507e);color:#fff;border:none;}
.etm-hero-cta h2{color:#fff;margin-bottom:4px;}
.etm-hero-cta p{margin:0;color:#cbd5e1;font-size:14px;}
.etm-mini-list{list-style:none;margin:0;padding:0;}
.etm-mini-list li a{display:flex;justify-content:space-between;align-items:center;padding:11px 0;border-bottom:1px solid var(--etm-line);text-decoration:none;color:var(--etm-navy);font-weight:600;font-size:14px;}
.etm-mini-list li a em{font-style:normal;font-size:12px;font-weight:600;text-transform:capitalize;color:var(--etm-muted);}
.etm-review-pending{opacity:.7;}
.etm-copy-btn.is-copied{background:var(--etm-teal);}

@media(max-width:900px){
  .etm-dash-header{flex-wrap:wrap;}
  .etm-dashboard,.etm-thread-layout,.etm-profile-grid,.etm-dir-layout,.etm-request-grid{grid-template-columns:minmax(0,1fr);}
  .etm-dash-side,.etm-dash-main{min-width:0;max-width:100%;}
  .etm-dash-side{position:static;}
  .etm-form-grid,.etm-typepick-grid{grid-template-columns:1fr;}
  .etm-dash-nav{flex-direction:row;flex-wrap:wrap;}
}

/* Billing tab */
.etm-btn-sm{padding:6px 12px;font-size:13px;}
.etm-pay-note{font-size:13px;margin:14px 0 0;display:flex;align-items:center;gap:6px;}
.etm-pay-note .etm-ico{width:16px;height:16px;color:var(--etm-teal);}
.etm-mandate-note{display:flex;align-items:center;gap:5px;font-size:12px;margin-top:8px;}
.etm-mandate-note .etm-ico{width:14px;height:14px;color:var(--etm-teal);}
.etm-invoice-table{width:100%;border-collapse:collapse;font-size:14px;}
.etm-invoice-table th{text-align:left;font-size:12px;text-transform:uppercase;letter-spacing:.03em;color:var(--etm-muted);padding:0 12px 10px;border-bottom:1px solid var(--etm-line);}
.etm-invoice-table td{padding:14px 12px;border-bottom:1px solid var(--etm-line);vertical-align:middle;}
.etm-invoice-table tr:last-child td{border-bottom:none;}
.etm-cancel-card h2{color:#b32d2e;}
.etm-tick-inline{display:flex;flex-wrap:wrap;gap:10px 22px;margin:0 0 18px;padding:0;list-style:none;}
.etm-tick-inline li{display:flex;align-items:center;gap:7px;font-size:13px;color:var(--etm-muted);}
.etm-tick-inline .etm-ico{width:16px;height:16px;color:var(--etm-teal);}
@media(max-width:640px){
  .etm-invoice-table thead{display:none;}
  .etm-invoice-table,.etm-invoice-table tbody,.etm-invoice-table tr,.etm-invoice-table td{display:block;width:100%;}
  .etm-invoice-table tr{border:1px solid var(--etm-line);border-radius:10px;margin-bottom:12px;padding:6px 0;}
  .etm-invoice-table td{border:none;display:flex;justify-content:space-between;padding:8px 14px;}
  .etm-invoice-table td::before{content:attr(data-label);font-weight:600;color:var(--etm-muted);}
}

/* ===== Multi-step request form (matches live request-tm-support) ===== */
.etm-ms{max-width:760px;margin:0 auto;}
.etm-ms-progress{display:flex;align-items:center;justify-content:space-between;margin:0 0 28px;position:relative;}
.etm-ms-progress::before{content:"";position:absolute;top:18px;left:6%;right:6%;height:2px;background:var(--etm-line);z-index:0;}
.etm-ms-step{display:flex;flex-direction:column;align-items:center;gap:7px;position:relative;z-index:1;flex:1;}
.etm-ms-circle{width:38px;height:38px;border-radius:50%;background:#fff;border:2px solid var(--etm-line);display:flex;align-items:center;justify-content:center;font-weight:800;color:var(--etm-muted);transition:.2s;}
.etm-ms-step.is-active .etm-ms-circle,.etm-ms-step.is-done .etm-ms-circle{background:var(--etm-teal);border-color:var(--etm-teal);color:#04221b;}
.etm-ms-label{font-size:12.5px;font-weight:600;color:var(--etm-muted);}
.etm-ms-step.is-active .etm-ms-label{color:var(--etm-navy);}
.etm-ms-panel{display:none;animation:etmfade .25s ease;}
.etm-ms-panel.is-active{display:block;}
@keyframes etmfade{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}
.etm-ms-panel h2{font-size:21px;color:var(--etm-navy);margin:0 0 6px;}
.etm-ms-panel .etm-ms-sub{color:var(--etm-muted);margin:0 0 20px;font-size:14.5px;}
.etm-ms-options{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;}
.etm-ms-opt{position:relative;}
.etm-ms-opt input{position:absolute;opacity:0;pointer-events:none;}
.etm-ms-opt label{display:flex;align-items:center;gap:11px;border:1.5px solid var(--etm-line);border-radius:11px;padding:15px 16px;cursor:pointer;font-weight:600;color:var(--etm-ink);font-size:14.5px;transition:.15s;background:#fff;height:100%;}
.etm-ms-opt label .etm-ico{width:22px;height:22px;color:var(--etm-teal);flex:none;}
.etm-ms-opt input:checked + label{border-color:var(--etm-teal);background:#f0fdfa;box-shadow:0 0 0 3px rgba(0,184,74,.12);}
.etm-ms-actions{display:flex;justify-content:space-between;gap:12px;margin-top:24px;}
.etm-ms-actions .etm-btn{min-width:130px;}
.etm-ms-back{background:#fff;color:var(--etm-navy);border:1.5px solid var(--etm-line);}
.etm-ms-summary{background:var(--etm-bg);border-radius:10px;padding:14px 16px;font-size:13.5px;color:var(--etm-muted);margin-top:6px;}
@media(max-width:560px){.etm-ms-options{grid-template-columns:1fr;}.etm-ms-label{display:none;}}
.etm-req{color:#e0556b;}
.etm-ms-shake{animation:etmshake .4s;}
@keyframes etmshake{0%,100%{transform:translateX(0)}25%{transform:translateX(-6px)}75%{transform:translateX(6px)}}
.etm-ms-done{text-align:center;padding:40px 10px;}
.etm-ms-done h2{color:var(--etm-teal-d);font-size:24px;margin:0 0 10px;}
.etm-ms-done p{color:var(--etm-muted);max-width:460px;margin:0 auto;}

/* ===== Directory redesign (yelp-style result cards) ===== */
.etm-dir2{--d-navy:#062F66;--d-navy2:#062F66;--d-teal:#00B84A;--d-line:#e3e8f1;--d-soft:#f6f8fc;--d-ink:#17233f;--d-muted:#64748b;max-width:1560px;}
.etm-dir2-head{background:linear-gradient(135deg,var(--d-navy) 0%,var(--d-navy2) 100%);border-radius:18px;padding:34px 34px 30px;color:#fff;margin-bottom:26px;border:1px solid var(--d-navy2);}
.etm-dir2-head h1{font-size:30px;font-weight:800;letter-spacing:-.5px;margin:0 0 8px;color:#fff;}
.etm-dir2-sub{font-size:15.5px;opacity:.82;margin:0 0 22px;max-width:680px;line-height:1.6;}
.etm-dir2-search{display:flex;gap:10px;background:#fff;border-radius:12px;padding:8px;align-items:center;flex-wrap:wrap;}
.etm-dir2-search-ico{display:flex;align-items:center;padding-left:8px;color:var(--d-muted);}
.etm-dir2-search-ico .etm-srch-svg{width:18px;height:18px;}
.etm-dir2-search input[type=search]{flex:1;min-width:180px;border:0;outline:0;font-size:15px;color:var(--d-ink);background:transparent;font-family:inherit;padding:8px 4px;}
.etm-dir2-search select{border:1px solid var(--d-line);border-radius:9px;padding:10px 12px;font-size:14px;color:var(--d-ink);background:#fff;font-family:inherit;}
.etm-dir2-search .etm-btn-teal{background:var(--d-teal);color:#04221b;border-radius:9px;padding:11px 22px;font-weight:700;}
.etm-dir2-search .etm-btn-teal:hover{filter:brightness(.95);}

.etm-dir2-layout{display:grid;grid-template-columns:264px 1fr;gap:26px;align-items:start;}
.etm-dir2-filters{position:sticky;top:20px;display:flex;flex-direction:column;gap:16px;}
.etm-dir2-fcard,.etm-dir2-cta{background:#fff;border:1px solid var(--d-line);border-radius:14px;padding:20px;}
.etm-dir2-fcard h3,.etm-dir2-cta h3{font-size:15px;font-weight:800;color:var(--d-navy);margin:0 0 16px;padding-bottom:12px;border-bottom:1px solid var(--d-line);}
.etm-dir2 .etm-filter-block{margin-bottom:14px;}
.etm-dir2 .etm-filter-block label{display:block;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:var(--d-muted);margin-bottom:6px;}
.etm-dir2 .etm-filter-block select{width:100%;border:1.5px solid var(--d-line);border-radius:9px;padding:11px 12px;font-size:14px;color:var(--d-ink);background:#fff;font-family:inherit;}
.etm-dir2 .etm-btn-navy{background:var(--d-navy);}
.etm-dir2 .etm-btn-block{width:100%;justify-content:center;}
.etm-dir2-clear{display:block;text-align:center;margin-top:12px;font-size:13px;font-weight:600;color:var(--d-muted);text-decoration:none;}
.etm-dir2-clear:hover{color:var(--d-navy);}
.etm-dir2-cta{background:var(--d-navy);border-color:var(--d-navy2);}
.etm-dir2-cta h3{color:#fff;border-bottom-color:rgba(255,255,255,.14);}
.etm-dir2-cta p{font-size:13.5px;color:rgba(255,255,255,.82);line-height:1.55;margin:0 0 16px;}
.etm-dir2-cta .etm-btn-teal{background:var(--d-teal);color:#04221b;}

.etm-dir2-count{font-size:14px;color:var(--d-muted);margin:0 0 16px;}
.etm-dir2-count strong{color:var(--d-navy);font-size:16px;}
.etm-rcard-list{display:flex;flex-direction:column;gap:16px;}
.etm-rcard{display:grid;grid-template-columns:auto 1fr 190px;gap:20px;background:#fff;border:1px solid var(--d-line);border-radius:14px;padding:22px;transition:box-shadow .18s,border-color .18s,transform .18s;}
.etm-rcard:hover{border-color:rgba(0,184,74,.45);box-shadow:0 10px 30px rgba(6,47,102,.08);transform:translateY(-2px);}
.etm-rcard:has(.etm-vbadge-premium){
  border-color:#00B84A;
  box-shadow:0 0 0 1px rgba(0,184,74,.28),0 12px 34px rgba(6,47,102,.08);
}
.etm-rcard-media img,.etm-rcard-initials{width:72px;height:72px;border-radius:14px;object-fit:cover;display:flex;align-items:center;justify-content:center;}
.etm-rcard-initials{background:var(--d-navy);color:#fff;font-size:26px;font-weight:800;}
.etm-rcard-head{display:flex;align-items:flex-start;gap:12px;flex-wrap:wrap;margin-bottom:8px;}
.etm-rcard-head h3{margin:0;font-size:19px;font-weight:800;line-height:1.2;}
.etm-rcard-head h3 a{color:var(--d-navy);text-decoration:none;}
.etm-rcard-head h3 a:hover{color:var(--d-teal);}
.etm-vbadge{display:inline-flex;align-items:center;gap:5px;font-size:11.5px;font-weight:700;padding:5px 11px;border-radius:99px;background:var(--d-soft);color:var(--d-muted);border:1px solid var(--d-line);white-space:nowrap;}
.etm-vbadge .etm-vbadge-svg{width:13px;height:13px;}
.etm-vbadge-premium{background:rgba(200,16,46,.82);color:#fff4f6;border-color:rgba(255,151,166,.65);}
.etm-vbadge-premium .etm-vbadge-svg{color:#ffe4e9;stroke-width:2.3px !important;}
.etm-map-card.etm-vbadge-premium{
  background:rgba(255,255,255,.08) !important;
  color:#fff !important;
  border:1px solid #00B84A !important;
  box-shadow:0 0 0 1px rgba(0,184,74,.26),0 12px 30px rgba(6,47,102,.22);
}
.etm-map-card.etm-vbadge-premium .etm-map-badge{
  display:inline-flex;
  align-items:center;
  gap:5px;
  background:rgba(200,16,46,.82);
  color:#fff4f6;
  border:1px solid rgba(255,151,166,.65);
}
.etm-map-card.etm-vbadge-premium .etm-map-badge-star{
  width:13px;
  height:13px;
  color:#ffe4e9;
  stroke-width:2.4px !important;
}
.etm-map-card-role{
  display:block;
  color:rgba(255,255,255,.62);
  font-size:11px;
  line-height:1.2;
}
.etm-vbadge-verified,.etm-vbadge-training{background:rgba(0,184,74,.1);color:#04695a;border-color:rgba(0,184,74,.3);}
.etm-vbadge-claimed{background:rgba(6,47,102,.06);color:var(--d-navy);border-color:var(--d-line);}
.etm-vbadge.etm-vbadge-unclaimed,.etm-vbadge.etm-vbadge-free{background:#f1f5f9;color:var(--d-muted);}
.etm-rcard-meta{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin-bottom:12px;}
.etm-rcard-rating{display:inline-flex;align-items:center;gap:7px;font-size:13.5px;color:var(--d-ink);}
.etm-rcard-rating b{font-weight:800;color:var(--d-navy);}
.etm-rcard-rcount{color:var(--d-muted);font-size:13px;}
.etm-stars{display:inline-flex;gap:1px;}
.etm-star{position:relative;display:inline-flex;color:#d7deea;}
.etm-star .etm-star-svg{width:15px;height:15px;}
.etm-star.on{color:#f5b400;}
.etm-star.half{color:#d7deea;}
.etm-star.half::before{content:"";position:absolute;top:0;left:0;width:50%;height:100%;overflow:hidden;color:#f5b400;background:linear-gradient(90deg,currentColor 50%,transparent 50%);-webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l3 7 7 .5-5.3 4.6L18 21l-6-3.8L6 21l1.3-6.9L2 9.5 9 9z'/></svg>") left/cover no-repeat;}
.etm-rcard-loc{display:inline-flex;align-items:center;gap:5px;font-size:13.5px;color:var(--d-muted);}
.etm-rcard-loc .etm-loc-svg{width:14px;height:14px;color:var(--d-teal);}
.etm-rcard-bio{font-size:14px;color:#475569;line-height:1.6;margin:0 0 12px;}
.etm-rcard-chips{list-style:none;display:flex;flex-wrap:wrap;gap:7px;padding:0;margin:0 0 10px;}
.etm-rcard-chips li{font-size:12px;font-weight:600;background:var(--d-soft);color:#475569;border:1px solid var(--d-line);padding:4px 11px;border-radius:99px;}
.etm-rcard-cover{display:flex;align-items:center;gap:6px;font-size:12.5px;color:var(--d-muted);margin:0;}
.etm-rcard-cover .etm-cover-svg{width:14px;height:14px;color:var(--d-teal);}
.etm-rcard-aside{display:flex;flex-direction:column;gap:9px;justify-content:flex-start;border-left:1px solid var(--d-line);padding-left:20px;}
.etm-rcard-aside .etm-btn{justify-content:center;padding:10px;font-size:13.5px;}
.etm-rcard-aside .etm-btn-navy{background:var(--d-navy);}
.etm-rcard-aside .etm-btn-ghost{border-color:var(--d-line);color:var(--d-navy);}
.etm-rcard-web{display:inline-flex;align-items:center;justify-content:center;gap:6px;font-size:13px;font-weight:600;color:var(--d-muted);text-decoration:none;padding:6px;}
.etm-rcard-web:hover{color:var(--d-teal);}
.etm-rcard-web .etm-web-svg{width:14px;height:14px;}

@media(max-width:980px){
  .etm-dir2-layout{grid-template-columns:1fr;}
  .etm-dir2-filters{position:static;flex-direction:row;flex-wrap:wrap;}
  .etm-dir2-fcard,.etm-dir2-cta{flex:1;min-width:240px;}
}
@media(max-width:680px){
  .etm-rcard{grid-template-columns:auto 1fr;}
  .etm-rcard-aside{grid-column:1/-1;border-left:0;border-top:1px solid var(--d-line);padding-left:0;padding-top:14px;flex-direction:row;flex-wrap:wrap;}
  .etm-rcard-aside .etm-btn{flex:1;}
}

/* ===== Profile hero (navy banner, matches directory cards) ===== */
.etm-profile-page{--d-navy:#062F66;--d-navy2:#062F66;--d-teal:#00B84A;--d-line:#e3e8f1;}
.etm-profile-page .etm-profile-hero{display:grid;grid-template-columns:auto 1fr auto;gap:26px;align-items:center;background:linear-gradient(135deg,var(--d-navy) 0%,var(--d-navy2) 100%);border-radius:18px;padding:30px 32px;color:#fff;margin-bottom:22px;}
.etm-profile-page .etm-hero-avatar img,.etm-profile-page .etm-hero-initials{width:104px;height:104px;border-radius:18px;object-fit:cover;display:flex;align-items:center;justify-content:center;border:3px solid rgba(255,255,255,.14);}
.etm-profile-page .etm-hero-initials{background:rgba(255,255,255,.1);color:#fff;font-size:38px;font-weight:800;}
.etm-profile-page .etm-hero-badge{background:rgba(0,184,74,.16);color:#7df0d9;border:1px solid rgba(0,184,74,.4);}
.etm-profile-page .etm-hero-badge .etm-ico{width:14px;height:14px;}
.etm-profile-page .etm-hero-main h1{margin:10px 0 4px;font-size:30px;font-weight:800;letter-spacing:-.5px;color:#fff;}
.etm-profile-page .etm-hero-tagline{color:rgba(255,255,255,.82);margin:0 0 10px;font-size:15px;}
.etm-profile-page .etm-hero-meta{display:flex;gap:20px;flex-wrap:wrap;font-size:14px;color:rgba(255,255,255,.78);align-items:center;}
.etm-profile-page .etm-hero-meta span{display:inline-flex;align-items:center;gap:6px;}
.etm-profile-page .etm-hero-meta .etm-ico{width:15px;height:15px;color:var(--d-teal);}
.etm-profile-page .etm-hero-rating{gap:8px;}
.etm-profile-page .etm-hero-rating b{font-weight:800;color:#fff;}
.etm-profile-page .etm-hero-services{list-style:none;display:flex;gap:18px;flex-wrap:wrap;padding:0;margin:14px 0 0;}
.etm-profile-page .etm-hero-services li{display:inline-flex;align-items:center;gap:7px;font-size:13.5px;font-weight:600;color:#fff;}
.etm-profile-page .etm-hero-services .etm-ico{color:var(--d-teal);width:15px;height:15px;}
.etm-profile-page .etm-hero-cta-col{display:flex;flex-direction:column;gap:10px;align-items:stretch;min-width:170px;}
.etm-profile-page .etm-hero-cta-col .etm-btn-teal{background:var(--d-teal);color:#04221b;justify-content:center;padding:12px 20px;font-weight:700;}
.etm-profile-page .etm-hero-web{display:inline-flex;align-items:center;justify-content:center;gap:7px;font-size:13.5px;font-weight:600;color:rgba(255,255,255,.85);text-decoration:none;padding:8px;}
.etm-profile-page .etm-hero-web:hover{color:var(--d-teal);}
.etm-profile-page .etm-hero-web .etm-ico{width:15px;height:15px;}
@media(max-width:760px){
  .etm-profile-page .etm-profile-hero{grid-template-columns:1fr;text-align:left;}
  .etm-profile-page .etm-hero-cta-col{min-width:0;}
}

/* ===== Reusable "Recently listed" widget ===== */
.etm-recent{--d-navy:#062F66;--d-teal:#00B84A;--d-line:#e3e8f1;--d-soft:#f6f8fc;--d-muted:#64748b;max-width:1560px;margin:0 auto;padding:8px 0;}
.etm-recent-head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:20px;flex-wrap:wrap;}
.etm-recent-head h2{font-size:24px;font-weight:800;color:var(--d-navy);margin:0;letter-spacing:-.4px;}
.etm-recent-head p{margin:6px 0 0;color:var(--d-muted);font-size:14.5px;}
.etm-recent-all{display:inline-flex;align-items:center;gap:6px;font-size:14px;font-weight:700;color:var(--d-navy);text-decoration:none;white-space:nowrap;}
.etm-recent-all:hover{color:var(--d-teal);}
.etm-recent-all .etm-recent-arrow{width:15px;height:15px;}
.etm-recent-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.etm-rtm-card{background:#fff;border:1px solid var(--d-line);border-radius:14px;padding:18px;display:flex;flex-direction:column;gap:10px;transition:box-shadow .18s,border-color .18s,transform .18s;}
.etm-rtm-card:hover{border-color:rgba(0,184,74,.45);box-shadow:0 10px 28px rgba(6,47,102,.08);transform:translateY(-2px);}
.etm-rtm-card:has(.etm-vbadge-premium){
  border-color:#00B84A;
  box-shadow:0 0 0 1px rgba(0,184,74,.28),0 10px 28px rgba(6,47,102,.08);
}
.etm-rtm-top{display:flex;align-items:center;justify-content:space-between;gap:10px;}
.etm-rtm-top img,.etm-rtm-initials{width:52px;height:52px;border-radius:12px;object-fit:cover;display:flex;align-items:center;justify-content:center;}
.etm-rtm-initials{background:var(--d-navy);color:#fff;font-size:20px;font-weight:800;}
.etm-rtm-card h3{margin:0;font-size:16.5px;font-weight:800;line-height:1.25;}
.etm-rtm-card h3 a{color:var(--d-navy);text-decoration:none;}
.etm-rtm-card h3 a:hover{color:var(--d-teal);}
.etm-rtm-meta{display:flex;align-items:center;gap:12px;flex-wrap:wrap;font-size:13px;color:var(--d-muted);}
.etm-rtm-meta b{color:var(--d-navy);font-weight:800;}
.etm-rtm-new{font-weight:600;}
.etm-rtm-loc{display:inline-flex;align-items:center;gap:4px;}
.etm-rtm-loc .etm-loc-svg{width:13px;height:13px;color:var(--d-teal);}
.etm-rtm-actions{display:flex;gap:8px;margin-top:auto;padding-top:4px;}
.etm-rtm-actions .etm-btn{flex:1;justify-content:center;padding:9px 8px;font-size:12.5px;}
.etm-rtm-actions .etm-btn-navy{background:var(--d-navy);}
.etm-rtm-actions .etm-btn-ghost{border-color:var(--d-line);color:var(--d-navy);}
@media(max-width:980px){.etm-recent-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.etm-recent-grid{grid-template-columns:1fr;}}

/* ===== Consent checkbox (all public lead/contact forms) ===== */
.etm-consent{display:flex;gap:10px;align-items:flex-start;margin:14px 0 16px;font-size:13px;line-height:1.5;color:#475569;cursor:pointer;}
.etm-consent input[type=checkbox]{margin:2px 0 0;width:17px;height:17px;flex:0 0 auto;accent-color:#00B84A;cursor:pointer;}
.etm-consent a{color:#00A640;font-weight:600;}

/* ===== Request-TM-support form — live design (choice cards, urgency chips, how-it-works, bottom CTA) ===== */
.etm-request-card{padding:0;overflow:hidden;border-color:#e3e8f1;box-shadow:0 4px 32px rgba(6,47,102,.07);}
.etm-request-card .etm-ms{max-width:none;margin:0;}

/* Progress bar refinement (live look) */
.etm-request-card .etm-ms-progress{margin:0;padding:28px 32px 0;}
.etm-request-card .etm-ms-progress::before{display:none;}
.etm-request-card .etm-ms-step::after{content:'';position:absolute;top:14px;left:50%;width:100%;height:2px;background:#e3e8f1;z-index:0;}
.etm-request-card .etm-ms-step:last-child::after{display:none;}
.etm-request-card .etm-ms-step.is-active::after,.etm-request-card .etm-ms-step.is-done::after{background:#00B84A;}
.etm-request-card .etm-ms-circle{width:28px;height:28px;font-size:12px;border:2px solid #e3e8f1;background:#fff;color:#94a3b8;box-shadow:none;}
.etm-request-card .etm-ms-step.is-done .etm-ms-circle{background:#00B84A;border-color:#00B84A;color:#04221b;}
.etm-request-card .etm-ms-step.is-active .etm-ms-circle{background:#062F66;border-color:#062F66;color:#fff;box-shadow:0 0 0 4px rgba(6,47,102,.12);}
.etm-request-card .etm-ms-label{font-size:10.5px;color:#94a3b8;}
.etm-request-card .etm-ms-step.is-active .etm-ms-label,.etm-request-card .etm-ms-step.is-done .etm-ms-label{color:#334155;}

/* Step panels */
.etm-request-card .etm-ms-panel{padding:24px 32px 32px;}
.etm-request-card .etm-ms-panel h2{display:flex;align-items:center;gap:10px;font-size:22px;font-weight:900;color:#062F66;margin:0 0 8px;padding:0 0 12px;border-bottom:2px solid #e3e8f1;letter-spacing:0;}
.etm-request-card .etm-ms-panel h2::before{content:'';display:block;width:8px;height:32px;border-radius:999px;background:#00B84A;box-shadow:0 0 0 4px rgba(0,184,74,.12);}
.etm-request-card .etm-ms-panel .etm-ms-sub{color:#475569;margin:0 0 24px;font-size:14.5px;line-height:1.55;}

/* Choice cards (Step 1) — radio group name=service */
.etm-choice-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:8px;}
.etm-choice-card{position:relative;display:flex;flex-direction:column;align-items:center;text-align:center;border:2px solid #e3e8f1;border-radius:12px;padding:24px 18px;cursor:pointer;transition:all .2s;background:#fff;}
.etm-choice-card input{position:absolute;opacity:0;pointer-events:none;}
.etm-choice-card:hover{border-color:#00B84A;box-shadow:0 6px 20px rgba(0,184,74,.15);}
.etm-choice-ico{width:52px;height:52px;border-radius:12px;background:rgba(6,47,102,.07);display:flex;align-items:center;justify-content:center;margin:0 auto 14px;transition:background .2s;}
.etm-choice-ico .etm-ico{width:26px;height:26px;color:#062F66;}
.etm-choice-title{font-size:15px;font-weight:800;color:#062F66;line-height:1.3;margin-bottom:6px;}
.etm-choice-desc{font-size:13px;color:#6b7280;line-height:1.45;}
.etm-choice-card:has(input:checked){border-color:#00B84A;background:rgba(0,184,74,.06);}
.etm-choice-card:has(input:checked) .etm-choice-ico{background:rgba(0,184,74,.15);}
.etm-choice-card:has(input:checked)::after{content:'✓';position:absolute;top:10px;right:10px;width:22px;height:22px;border-radius:50%;background:#00B84A;color:#04221b;font-size:12px;font-weight:800;display:flex;align-items:center;justify-content:center;}

/* Urgency chips — radio group name=timeframe */
.etm-chips{display:flex;gap:12px;flex-wrap:wrap;}
.etm-chip{position:relative;display:flex;align-items:center;gap:8px;border:2px solid #e3e8f1;border-radius:10px;padding:14px 20px;font-size:15px;font-weight:700;cursor:pointer;transition:all .2s;color:#475569;background:#fff;}
.etm-chip input{position:absolute;opacity:0;pointer-events:none;}
.etm-chip .etm-ico{width:18px;height:18px;}
.etm-chip:hover{border-color:#062F66;color:#062F66;background:#f1f5f9;}
.etm-chip:has(input:checked){border-color:#062F66;background:#062F66;color:#fff;}

/* Info note (Step 5) */
.etm-info-note{display:flex;align-items:flex-start;gap:10px;background:#f8fafc;border-radius:8px;padding:14px 16px;font-size:13px;color:#6b7280;line-height:1.5;margin:6px 0 16px;}
.etm-info-note .etm-ico{flex:0 0 auto;width:16px;height:16px;margin-top:1px;color:#00B84A;}

/* Step nav buttons (live look) */
.etm-request-card .etm-ms-actions{margin-top:24px;padding-top:20px;border-top:1px solid #e3e8f1;}
.etm-ms-back{background:transparent;border:1.5px solid #e3e8f1;color:#475569;}
.etm-ms-back:hover{border-color:#94a3b8;color:#1e293b;}
.etm-request-card .etm-ms-next{background:#062F66;color:#fff;}
.etm-request-card .etm-ms-next:hover{background:#00B84A;color:#04221b;}
.etm-request-card .etm-ms-submit{width:100%;justify-content:center;background:#00B84A;color:#04221b;font-size:15px;padding:13px 28px;}
.etm-request-card .etm-ms-submit:hover{background:#00B84A;opacity:.9;}
.etm-request-card .etm-ms-panel[data-panel="5"] .etm-ms-actions{flex-direction:column-reverse;align-items:stretch;border:none;padding-top:12px;}

/* How-it-works strip (public page only) */
.etm-howstrip{background:#fff;border:1px solid #e3e8f1;border-radius:14px;padding:28px 32px;margin-top:28px;}
.etm-howstrip h3{font-size:13px;font-weight:700;color:#00B84A;text-transform:uppercase;letter-spacing:.08em;margin:0 0 20px;}
.etm-howstrip-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.etm-hss{display:flex;gap:14px;align-items:flex-start;}
.etm-hss-ico{width:44px;height:44px;border-radius:12px;background:rgba(0,184,74,.1);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#062F66;}
.etm-hss-ico .etm-ico{width:22px;height:22px;}
.etm-hss-num{font-size:11px;font-weight:700;color:#00B84A;text-transform:uppercase;letter-spacing:.08em;display:block;margin-bottom:3px;}
.etm-hss strong{display:block;font-size:15px;font-weight:800;color:#062F66;margin-bottom:4px;}
.etm-hss p{font-size:14px;color:#64748b;line-height:1.55;margin:0;}

/* Bottom CTA band (public page only) */
.etm-bottom-cta{background:#062F66;color:#fff;text-align:center;padding:60px 20px;}
.etm-bottom-cta-inner{max-width:600px;margin:0 auto;}
.etm-bottom-cta h2{font-size:clamp(22px,3vw,34px);font-weight:800;letter-spacing:-.5px;margin:0 0 12px;color:#fff;}
.etm-bottom-cta p{font-size:16px;opacity:.85;margin:0 auto 28px;max-width:500px;}
.etm-bottom-cta .etm-btn-teal{background:#00B84A;color:#04221b;padding:14px 28px;font-size:15px;}
.etm-bottom-cta .etm-btn-teal:hover{background:#00B84A;opacity:.9;color:#04221b;}

@media(max-width:980px){
  .etm-choice-grid{grid-template-columns:repeat(2,1fr);}
  .etm-howstrip-steps{grid-template-columns:1fr;}
  .etm-chips{flex-direction:column;}
}
@media(max-width:560px){
  .etm-request-card .etm-ms-progress,.etm-request-card .etm-ms-panel{padding-left:18px;padding-right:18px;}
  .etm-choice-grid{grid-template-columns:1fr 1fr;}
  .etm-request-card .etm-ms-label{display:block;}
}

/* Inputs stand out with a slight inner shadow (request form + all lead forms) */
.etm-field input[type=text],.etm-field input[type=email],.etm-field input[type=tel],.etm-field input[type=url],.etm-field input[type=number],.etm-field input[type=password],.etm-field input[type=search],.etm-field textarea,.etm-field select,
.etm-ms-form input[type=text],.etm-ms-form input[type=email],.etm-ms-form input[type=tel],.etm-ms-form textarea,.etm-ms-form select,
.etm-directory input[type=search]{box-shadow:inset 0 1px 3px rgba(16,24,40,.10);background:#fcfdfe;}
.etm-field input:focus,.etm-field textarea:focus,.etm-field select:focus,.etm-ms-form input:focus,.etm-ms-form textarea:focus,.etm-ms-form select:focus{box-shadow:inset 0 1px 3px rgba(16,24,40,.08),0 0 0 3px rgba(0,184,74,.14);background:#fff;}

/* Recent-widget badge: keep it inside the card (no overflow) */
.etm-rtm-top{flex-wrap:wrap;}
.etm-rtm-top .etm-vbadge{font-size:10.5px;padding:3px 9px;white-space:nowrap;max-width:100%;}

/* Simple request-form progress bar (replaces numbered step dots) */
.etm-ms-bar{height:5px;border-radius:99px;background:#e3e8f1;overflow:hidden;margin:0 0 26px;}
.etm-ms-bar-fill{display:block;height:100%;background:#00B84A;border-radius:99px;transition:width .3s ease;}

/* View Profile buttons on listings -> brand teal */
.etm-rcard-aside .etm-btn-navy,.etm-rtm-actions .etm-btn-navy{background:#00B84A;color:#04221b;}
.etm-rcard-aside .etm-btn-navy:hover,.etm-rtm-actions .etm-btn-navy:hover{background:#06b39a;color:#04221b;}

/* Search boxes: no inner shadow (clean) */
.etm-directory input[type=search],.etm-dir2-search input[type=search],.etm-dir2-search{box-shadow:none !important;}

/* =========================================================================
   DASHBOARD POLISH (append-only) — brand navy #062F66 / teal #00B84A
   Enhances the existing dashboard chrome without rewriting earlier rules.
   ========================================================================= */
:root{
  --etm-brand-navy:#062F66; --etm-brand-navy2:#062F66; --etm-brand-teal:#00B84A;
}

/* App background: subtle tint so white cards lift off the page */
body.etm-app{background:#eef1f6;}

/* ---- Sidebar shell ---- */
.etm-dashboard{gap:28px;}
.etm-dash-side{
  background:linear-gradient(185deg,var(--etm-brand-navy) 0%,var(--etm-brand-navy2) 100%);
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 14px 40px -22px rgba(6,47,102,.7);
  padding:20px 16px;border-radius:18px;
}
.etm-dash-brand{padding:4px 8px 16px;margin-bottom:8px;border-bottom:1px solid rgba(255,255,255,.10);}
.etm-dash-brand-logo{display:inline-flex;opacity:.96;}
.etm-dash-user{align-items:center;gap:13px;padding:4px 8px 16px;}
.etm-dash-user img{width:48px;height:48px;border-radius:14px;box-shadow:0 0 0 2px rgba(0,184,74,.5);}
.etm-dash-user-id{min-width:0;}
.etm-dash-user strong{font-size:14.5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:150px;}
.etm-dash-role{display:block;font-size:11px;letter-spacing:.04em;text-transform:uppercase;color:#9fb3d6;margin-top:1px;font-weight:600;}
.etm-badge-pill{margin-top:5px;background:rgba(0,184,74,.16);color:#7df0d8;padding:2px 9px;border-radius:99px;font-weight:600;font-size:10.5px;}
.etm-dash-nav a{font-size:13.5px;border-radius:11px;padding:10px 12px;color:#c4d2ea;}
.etm-dash-nav a .etm-ico{width:18px;height:18px;opacity:.92;}
.etm-dash-nav a:hover{background:rgba(255,255,255,.07);color:#fff;}
.etm-dash-nav a.is-active{background:var(--etm-brand-teal);color:#022;box-shadow:0 8px 20px -10px rgba(0,184,74,.8);font-weight:700;}
.etm-dash-nav a.is-active .etm-ico{opacity:1;}
.etm-nav-count{background:#e11d48;color:#fff;font-weight:800;}
.etm-dash-nav a.is-active .etm-nav-count{background:#e11d48;color:#fff;}
.etm-nav-site,.etm-nav-logout{margin-top:6px;border-top:1px solid rgba(255,255,255,.10);padding-top:12px!important;color:#9fb3d6!important;}
.etm-nav-site:hover,.etm-nav-logout:hover{color:#fff!important;}
.etm-nav-logout{margin-top:2px;border-top:none;padding-top:6px!important;}

/* ---- Tab heading ---- */
.etm-tab-head h1{font-size:24px;letter-spacing:-.01em;color:var(--etm-brand-navy);}

/* ---- Dashboard profile header (hero) ---- */
.etm-dash-header{
  gap:22px;border-radius:18px;padding:22px 26px;
  background:linear-gradient(120deg,#ffffff 0%,#f6f9fc 100%);
  border:1px solid #e6ebf2;box-shadow:0 10px 30px -22px rgba(6,47,102,.5);
}
.etm-dash-header:before{width:6px;background:var(--etm-brand-teal);}
.etm-dash-header-op:before{background:var(--etm-brand-navy);}
.etm-dash-header-tp:before{background:#7c3aed;}
.etm-dh-avatar img{width:86px;height:86px;border-radius:18px;box-shadow:0 6px 18px -8px rgba(6,47,102,.45);}
.etm-dh-greet{margin:0;font-size:12.5px;font-weight:600;color:var(--etm-brand-teal);letter-spacing:.02em;}
.etm-dh-name{font-size:23px;color:var(--etm-brand-navy);margin:3px 0 3px;letter-spacing:-.01em;}
.etm-dh-badge{background:#eaf7f3;color:#0b6b5d;}
.etm-dh-meta .etm-ico{color:var(--etm-brand-teal);}
.etm-dh-regions li{background:#eaf7f3;color:#0b6b5d;}
.etm-dh-ring svg circle:nth-child(2){stroke:var(--etm-brand-teal);}

/* ---- Stat cards (icon + hover lift) ---- */
.etm-stat-row{gap:18px;}
.etm-stat-card{
  position:relative;border-radius:16px;padding:20px 22px;
  border:1px solid #e6ebf2;box-shadow:0 8px 24px -20px rgba(6,47,102,.5);
  transition:transform .14s ease,box-shadow .14s ease;overflow:hidden;
}
.etm-stat-card:hover{transform:translateY(-2px);box-shadow:0 16px 34px -22px rgba(6,47,102,.55);}
.etm-stat-card:before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background:linear-gradient(var(--etm-brand-teal),#00A640);}
.etm-stat-ico{position:absolute;top:16px;right:16px;width:34px;height:34px;border-radius:10px;background:#eaf7f3;display:inline-flex;align-items:center;justify-content:center;}
.etm-stat-ico .etm-ico{width:18px;height:18px;color:var(--etm-brand-teal);}
.etm-stat-num{font-size:30px;color:var(--etm-brand-navy);letter-spacing:-.02em;}
.etm-stat-lbl{font-weight:500;}

/* ---- Cards / quick actions ---- */
.etm-card{border-radius:16px;border-color:#e6ebf2;box-shadow:0 8px 24px -22px rgba(6,47,102,.5);}
.etm-card h2{font-size:16px;color:var(--etm-brand-navy);letter-spacing:-.01em;}
.etm-quick-grid a{border-radius:12px;border-color:#e6ebf2;transition:.14s;}
.etm-quick-grid a:hover{border-color:var(--etm-brand-teal);background:#eefdfa;transform:translateY(-1px);box-shadow:0 10px 22px -16px rgba(0,184,74,.7);}
.etm-quick-grid .etm-ico{color:var(--etm-brand-teal);}

/* Overview two-column (quick actions + recent activity) */
.etm-ov-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.etm-ov-grid > .etm-card{margin-bottom:0;}

/* ---- Hero CTA (requester) ---- */
.etm-hero-cta{background:linear-gradient(120deg,var(--etm-brand-navy),var(--etm-brand-navy2));border-radius:16px;}
.etm-hero-cta .etm-btn-teal{background:var(--etm-brand-teal);color:#022;font-weight:700;}
.etm-hero-cta .etm-btn-teal:hover{background:#06b39a;color:#022;}

/* ---- Upgrade card (free-tier prompt) ---- */
.etm-upgrade-card{
  position:relative;overflow:hidden;border:1px solid #b9efe4;border-radius:16px;
  background:radial-gradient(circle at 100% 0%,rgba(0,184,74,.16),transparent 55%),linear-gradient(135deg,#ffffff,#f3fffb);
  padding:24px 26px;
}
.etm-upgrade-card:after{content:"";position:absolute;right:-60px;top:-60px;width:200px;height:200px;border-radius:50%;background:rgba(0,184,74,.10);}
.etm-upgrade-body{position:relative;max-width:680px;}
.etm-upgrade-flag{display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:#0b6b5d;background:#d6f5ec;padding:4px 11px;border-radius:99px;margin-bottom:10px;}
.etm-upgrade-flag .etm-ico{width:14px;height:14px;}
.etm-upgrade-card h2{font-size:19px;color:var(--etm-brand-navy);margin:0 0 8px;letter-spacing:-.01em;}
.etm-upgrade-card p{color:#475569;font-size:14px;line-height:1.55;margin:0 0 16px;}
.etm-upgrade-card .etm-btn-teal{background:var(--etm-brand-teal);color:#022;font-weight:700;padding:12px 22px;}
.etm-upgrade-card .etm-btn-teal:hover{background:#06b39a;color:#022;}

/* ---- Mini list (recent activity) ---- */
.etm-mini-list li a:hover{color:var(--etm-brand-teal);}
.etm-mini-list li:last-child a{border-bottom:none;}

/* ---- Header utility bar inbox indicator ---- */
.etm-util-inbox:hover{border-color:var(--etm-brand-teal)!important;color:var(--etm-brand-teal)!important;}
.etm-util-inbox-ico{width:17px;height:17px;}

@media (max-width:860px){
  .etm-ov-grid{grid-template-columns:1fr;}
  .etm-dash-user strong{max-width:none;}
}

/* ===========================================================================
   MOBILE-RESPONSIVE PASS (append-only). App-like dashboards, directories,
   profiles, request form, pricing on phones + small tablets. Desktop is
   untouched — every rule is inside a max-width media query.
   Breakpoints: 1024 (tablet), 900 (existing stack point), 768, 480.
   =========================================================================== */

/* ---- App pages: tighter gutters on phones (no horizontal scroll) ---- */
@media(max-width:768px){
  .etm-wrap{padding:18px 16px 40px !important;}
}

/* ---- DASHBOARD: turn the sidebar into a sticky horizontal tab bar ----
   On <=900px the grid already collapses (see rule above). Here we make the
   collapsed sidebar feel like a native app: a compact user row + a single
   horizontally-scrolling row of tab "pills" pinned under the header. */
@media(max-width:900px){
  .etm-dashboard{gap:16px;}
  .etm-dash-side{
    position:sticky;top:0;z-index:30;border-radius:14px;padding:12px 12px 8px;
    margin:0 0 4px;box-shadow:0 8px 24px -16px rgba(6,47,102,.6);
  }
  /* The full brand logo already lives in the site header — hide it in the panel */
  .etm-dash-brand{display:none;}
  .etm-dash-user{padding:2px 4px 12px;margin-bottom:10px;}
  .etm-dash-user img{width:40px;height:40px;}
  /* Tab strip: one row, horizontal scroll, momentum, hidden scrollbar */
  .etm-dash-nav{
    flex-direction:row;flex-wrap:nowrap;gap:8px;overflow-x:auto;
    -webkit-overflow-scrolling:touch;scrollbar-width:none;
    padding-bottom:4px;scroll-snap-type:x proximity;
  }
  .etm-dash-nav::-webkit-scrollbar{display:none;}
  .etm-dash-nav a{
    flex:0 0 auto;white-space:nowrap;scroll-snap-align:start;
    padding:10px 14px;min-height:44px;border-radius:11px;
    background:rgba(255,255,255,.06);
  }
  .etm-dash-nav a .etm-nav-count{margin-left:6px;}
  /* Site/logout links read as trailing pills, not full-width footer items */
  .etm-nav-site,.etm-nav-logout{
    margin-top:0 !important;border-top:0 !important;padding-top:10px !important;
  }
  /* Right-edge fade hints the tab strip scrolls horizontally for more tabs. */
  .etm-dash-side{position:sticky;overflow:hidden;}
  .etm-dash-side:after{
    content:"";position:absolute;right:0;bottom:8px;width:34px;height:48px;
    background:linear-gradient(to right,rgba(6,47,102,0),var(--etm-brand-navy));
    pointer-events:none;
  }
}
@media(max-width:480px){
  .etm-dash-side{border-radius:0;margin-left:-16px;margin-right:-16px;padding-left:16px;padding-right:16px;}
}

/* ---- Stat cards + quick actions stack cleanly on phones ---- */
@media(max-width:560px){
  .etm-stat-row{grid-template-columns:1fr 1fr;}
  .etm-quick-grid{grid-template-columns:1fr;}
  /* Keep long stat values (e.g. "Unclaimed") clear of the absolute corner icon. */
  .etm-stat-card{padding:18px 16px;}
  .etm-stat-ico{top:14px;right:12px;width:30px;height:30px;}
  .etm-stat-num{font-size:17px;line-height:1.25;letter-spacing:-.01em;padding-right:38px;}
  .etm-tab-head{flex-direction:column;align-items:stretch;gap:12px;}
  .etm-tab-head .etm-btn{width:100%;justify-content:center;}
  .etm-upsell,.etm-hero-cta,.etm-plan-current{flex-direction:column;align-items:flex-start;gap:14px;}
  .etm-upsell .etm-btn,.etm-hero-cta .etm-btn{width:100%;justify-content:center;}
}
@media(max-width:420px){
  .etm-stat-row{grid-template-columns:1fr;}
}

/* ---- Dashboard profile header: stack avatar/name/side on phones ---- */
@media(max-width:640px){
  .etm-dash-header{flex-direction:column;align-items:flex-start;padding:20px 18px;}
  .etm-dash-header .etm-dh-side{flex-direction:row;align-items:center;width:100%;justify-content:space-between;}
}

/* ---- Threads: list above conversation; bubbles a touch wider ---- */
@media(max-width:900px){
  .etm-thread-layout{grid-template-columns:1fr;gap:14px;}
  .etm-thread-list{max-height:300px;overflow:auto;}
  .etm-msg{max-width:88%;}
  .etm-reply-form button{align-self:stretch;justify-content:center;}
}

/* ---- DIRECTORY: collapse sidebar filters into a "Filters" drawer ----
   directory-extra.css already stacks the layout to 1fr at <=900px (filters
   become static above the results). Here we hide the filter panel behind a
   pure-CSS toggle so the RESULTS lead. Markup adds, just before the layout:
     <input type="checkbox" id="etm-dir2-filtertoggle" class="etm-dir2-ftoggle-cb">
     <label class="etm-dir2-filtertoggle" for="etm-dir2-filtertoggle"> Filters </label>
   No JS, no form-logic change. CTA card stays visible below results. */
.etm-dir2-ftoggle-cb{position:absolute;opacity:0;width:1px;height:1px;pointer-events:none;}
.etm-dir2-filtertoggle{
  display:none;align-items:center;justify-content:center;gap:9px;
  width:100%;margin:0 0 18px;padding:13px 16px;min-height:48px;
  border:1px solid #e3e8f1;border-radius:12px;background:#fff;cursor:pointer;
  font-size:15px;font-weight:800;color:#062F66;font-family:inherit;
  box-shadow:0 6px 18px rgba(6,47,102,.06);
}
.etm-dir2-filtertoggle svg{width:18px;height:18px;color:#00A640;}
@media(max-width:900px){
  /* Show the "Filters" button and hide the filter card until toggled open */
  .etm-dir2-filtertoggle{display:flex;}
  .etm-dir2-filters .etm-dir2-fcard{display:none;}
  .etm-dir2-ftoggle-cb:checked ~ .etm-dir2-layout .etm-dir2-fcard{display:block;}
  .etm-dir2-ftoggle-cb:checked ~ .etm-dir2-filtertoggle{background:#062F66;color:#fff;}
  .etm-dir2-ftoggle-cb:checked ~ .etm-dir2-filtertoggle svg{color:#00f0c8;}
  .etm-dir2-filters{gap:14px;}
}

/* Result cards: 3-col → single column on phones, pills wrap, actions full row */
@media(max-width:680px){
  .etm-rcard{grid-template-columns:1fr;gap:14px;padding:18px;}
  .etm-rcard-media{display:flex;}
  .etm-rcard-aside{grid-column:1/-1;border-left:0;border-top:1px solid var(--d-line);padding-left:0;padding-top:14px;}
  .etm-rcard-aside .etm-btn{flex:1 1 auto;}
}

/* ---- REQUEST / MULTI-STEP FORM: full width, big targets, chips wrap ---- */
@media(max-width:680px){
  .etm-request-grid{grid-template-columns:1fr;gap:22px;}
  .etm-choice-grid{grid-template-columns:1fr;}
  .etm-ms-opt label{min-height:52px;}
  .etm-chips{flex-direction:column;}
  .etm-chip{justify-content:center;min-height:48px;}
  .etm-ms-actions{flex-direction:column-reverse;gap:10px;}
  .etm-ms-actions .etm-btn{width:100%;min-width:0;justify-content:center;}
  .etm-request-card .etm-ms-progress,.etm-request-card .etm-ms-panel{padding-left:18px;padding-right:18px;}
  .etm-howstrip{padding:24px 20px;}
}

/* ---- PROFILE page (within etm.css hero): stack hero + CTAs ---- */
@media(max-width:760px){
  .etm-profile-page .etm-profile-hero{padding:24px 20px;}
  .etm-profile-page .etm-hero-cta-col .etm-btn-teal{width:100%;}
  .etm-profile-page .etm-hero-services{gap:12px;}
}

/* ---- RECENT widget: already 2-up@980 / 1-up@560; tighten head on phones - */
@media(max-width:560px){
  .etm-recent-head{flex-direction:column;align-items:flex-start;gap:8px;}
}

/* Post-payment success banner on the dashboard overview */
.etm-paid-banner{display:flex;align-items:center;gap:16px;flex-wrap:wrap;
  background:linear-gradient(180deg,rgba(0,166,64,.10),rgba(0,166,64,.04));
  border:1px solid rgba(0,166,64,.30);border-radius:14px;padding:18px 20px;margin:0 0 22px;}
.etm-paid-ico{flex:none;width:40px;height:40px;border-radius:50%;background:#00A640;color:#fff;display:inline-flex;align-items:center;justify-content:center;}
.etm-paid-ico svg{width:22px;height:22px;}
.etm-paid-body{flex:1 1 260px;display:flex;flex-direction:column;gap:2px;}
.etm-paid-body strong{font-size:16px;color:#0f172a;}
.etm-paid-body span{font-size:14px;color:#475569;}
.etm-paid-banner .etm-btn{flex:0 0 auto;}
@media(max-width:560px){.etm-paid-banner .etm-btn{width:100%;justify-content:center;}}

/* Contact-us form (general enquiry) */
.etm-contact-form-wrap{margin:8px 0;}
.etm-cf-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.etm-contact-form .etm-field{margin:0 0 14px;}
.etm-contact-form textarea{width:100%;}
@media(max-width:600px){.etm-cf-grid{grid-template-columns:1fr;}}

/* ---- Dashboard header: visible vanity share link + copy (all members) ---- */
.etm-dh-share{margin-top:10px;width:100%;}
.etm-dh-share-label{display:flex;align-items:center;gap:6px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:var(--etm-muted);margin:0 0 5px;}
.etm-dh-share-label .etm-ico{width:13px;height:13px;color:var(--etm-brand-teal);}
.etm-dh-share-row{display:flex;align-items:center;gap:7px;}
.etm-dh-share-link{flex:1;min-width:0;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:12.5px;font-weight:600;color:var(--etm-brand-navy);background:#eef4fb;border:1px solid #dbe6f3;border-radius:9px;padding:7px 10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.etm-dh-share-row .etm-copy-btn{flex:0 0 auto;}
.etm-dh-share-row .etm-copy-btn .etm-ico{width:14px;height:14px;}
.etm-copy-btn.is-copied{background:var(--etm-brand-teal)!important;color:#022!important;}

/* ---- Request page: breathing room under the heading + carried-over query echo ---- */
.etm-request-intro{margin:0 0 22px;}
.etm-request-intro h1{margin:0 0 8px;}
.etm-request-lede{color:var(--etm-muted);font-size:15px;line-height:1.55;margin:0;max-width:640px;}
.etm-request-echo{display:flex;align-items:flex-start;gap:9px;margin-top:14px;background:#eefdfa;border:1px solid #b9efe4;border-radius:12px;padding:11px 14px;font-size:14px;color:#0b5e50;line-height:1.5;}
.etm-request-echo .etm-ico{width:17px;height:17px;color:var(--etm-brand-teal,#00A640);flex:none;margin-top:1px;}

/* ---- Dashboard stat cards: clickable + standout when there's something new ---- */
a.etm-stat-card{text-decoration:none;color:inherit;display:flex;}
.etm-stat-link{cursor:pointer;}
.etm-stat-link:hover{border-color:var(--etm-brand-teal)!important;transform:translateY(-2px);box-shadow:0 16px 34px -22px rgba(6,47,102,.55);}
.etm-stat-alert{border-color:#f6b5c0!important;background:linear-gradient(#fff,#fff5f8)!important;}
.etm-stat-alert:before{background:linear-gradient(#e11d48,#b9123a)!important;}
.etm-stat-alert .etm-stat-num{color:#e11d48!important;}
.etm-stat-alert .etm-stat-ico{background:#fde7ec!important;}
.etm-stat-alert .etm-stat-ico .etm-ico{color:#e11d48!important;}

/* Invoice status chip (pending/processing) — amber until payment confirmed */
.etm-substatus-pending,.etm-substatus-processing{background:#fffbeb;color:#b45309;}

/* ============================================================
   Dashboard UI pass (2026-06) — stat cards, quick actions,
   profile section titles, restriction hints. Append-only.
   ============================================================ */

/* Stat cards: stop the unread badge being clipped, give number + label room. */
.etm-stat-card{overflow:visible;display:flex;flex-direction:column;gap:8px;min-height:98px;justify-content:center;}
.etm-stat-card:before{border-top-left-radius:16px;border-bottom-left-radius:16px;}
.etm-stat-num{margin:0;}
.etm-stat-lbl{margin:0;line-height:1.35;}
.etm-stat-sub{display:block;font-style:normal;font-size:11px;color:var(--etm-muted);margin-top:2px;}
.etm-unread-dot{top:-9px;right:-9px;box-shadow:0 0 0 3px #fff,0 4px 10px rgba(225,29,72,.4);}

/* Quick actions: real, tappable buttons that stand out, with a teal icon chip. */
.etm-quick-grid{gap:12px;}
.etm-quick-grid a{align-items:center;gap:13px;padding:15px 16px;border:1px solid #e6ebf2;background:#fff;font-weight:700;color:var(--etm-brand-navy);box-shadow:0 8px 22px -20px rgba(6,47,102,.5);line-height:1.25;}
.etm-quick-grid a > .etm-ico{width:38px;height:38px;flex:none;padding:9px;box-sizing:border-box;border-radius:11px;background:#eaf7f3;color:var(--etm-brand-teal);}
.etm-quick-grid a:hover{border-color:var(--etm-brand-teal);background:#f5fffd;transform:translateY(-2px);box-shadow:0 14px 26px -18px rgba(0,184,74,.6);}

/* Profile form: grouping fields read as bold, separated sub-sections. */
.etm-field-services > label,
.etm-field-checkboxes > label,
.etm-field-multiselect > label,
.etm-field-regions > label,
.etm-field-radio > label{
  font-size:15px;font-weight:700;color:var(--etm-brand-navy);margin:0 0 13px;letter-spacing:-.01em;
}
.etm-card .etm-field-services,
.etm-card .etm-field-checkboxes,
.etm-card .etm-field-multiselect,
.etm-card .etm-field-regions,
.etm-card .etm-field-radio{
  margin-top:22px;padding-top:20px;border-top:1px solid var(--etm-line);
}
.etm-checkboxes{grid-template-columns:repeat(auto-fill,minmax(205px,1fr));gap:12px 22px;}
.etm-checkboxes input[type=checkbox],.etm-radios input[type=radio]{accent-color:var(--etm-brand-teal);width:16px;height:16px;flex:none;}
.etm-check,.etm-radio{font-size:13.5px;align-items:flex-start;}
.etm-radios{gap:11px 24px;}
.etm-check input:disabled{opacity:.45;}
.etm-check input:disabled ~ *{opacity:.5;}
.etm-check-ukwide{font-weight:700;color:var(--etm-brand-navy);}

/* Restriction hint + inline upgrade link. */
.etm-hint-limit{display:flex;align-items:center;gap:6px 12px;flex-wrap:wrap;margin-top:11px;}
.etm-upgrade-inline{display:inline-flex;align-items:center;gap:4px;font-weight:700;font-size:12px;color:var(--etm-teal);text-decoration:none;white-space:nowrap;}
.etm-upgrade-inline .etm-ico{width:13px;height:13px;}
.etm-upgrade-inline:hover{text-decoration:underline;}

/* Defensive: never let message text or snippets overflow their container. */
.etm-msg-bubble,.etm-thread-snip{overflow-wrap:anywhere;}

/* Premium / Network Plus badges — red pill with a gold star. */
.etm-vbadge.etm-vbadge-network{background:#c8102e;color:#fff;border-color:#c8102e}
.etm-vbadge.etm-vbadge-network .etm-vbadge-svg{display:none}
.etm-vbadge.etm-vbadge-network::before{content:"\2605";color:#ffce3a;font-size:1.05em;line-height:1;margin-right:3px;display:inline-block}

/* Network Plus dashboard badges (header + sidebar pill) — red with gold star */
.etm-badge-network{background:#c8102e!important;color:#fff!important;border-color:#c8102e!important}
.etm-dh-badge.etm-badge-network svg,.etm-badge-pill.etm-badge-network svg{display:none}
.etm-badge-network::before{content:"\2605";color:#ffce3a;margin-right:4px;display:inline-block;line-height:1}

/* Claim pending (amber) badge + edit-tab review notice */
.etm-vbadge.etm-vbadge-pending,.etm-badge-pending{background:#b45309!important;color:#fff!important;border-color:#b45309!important}
.etm-dh-badge.etm-badge-pending svg,.etm-badge-pill.etm-badge-pending svg{display:none}
.etm-claim-review{background:#fff8ed;border:1px solid #f3d6a8;border-radius:12px;padding:24px 26px;margin:8px 0}
.etm-claim-review h2{margin:0 0 8px;color:#b45309;font-size:20px}
.etm-claim-review p{margin:0;color:#52442d;line-height:1.6}

/* Register company typeahead search */
.etm-cosearch{position:relative}
.etm-cosearch-results{position:absolute;left:0;right:0;top:100%;z-index:30;background:#fff;border:1px solid #e3e8f1;border-radius:10px;box-shadow:0 12px 30px rgba(6,47,102,.12);margin-top:4px;max-height:300px;overflow:auto}
.etm-cosearch-item,.etm-cosearch-none{display:block;width:100%;text-align:left;border:0;background:none;padding:11px 14px;cursor:pointer;font:inherit;border-bottom:1px solid #f1f4f9}
.etm-cosearch-item:hover,.etm-cosearch-none:hover{background:#f3fbf9}
.etm-cosearch-item strong{display:block;color:#062F66;font-size:14px}
.etm-cosearch-item span{display:block;color:#64748b;font-size:12px}
.etm-cosearch-none{color:#00A640;font-weight:600;font-size:13px}
.etm-cosearch-picked{background:#eafaf6;border:1px solid #bfe9df;border-radius:10px;padding:10px 14px;color:#065f54;font-size:14px;display:flex;align-items:center;gap:6px;flex-wrap:wrap}
.etm-cosearch-picked a{color:#00A640}

/* Request a new category */
.etm-reqcat{margin:10px 0 0}
.etm-reqcat-toggle{font-size:13px;color:#00A640;font-weight:600;text-decoration:none}
.etm-reqcat-toggle:hover{text-decoration:underline}
.etm-reqcat-form{display:flex;gap:8px;align-items:center;margin:10px 0 4px;flex-wrap:wrap}
.etm-reqcat-input{flex:1;min-width:200px;padding:9px 12px;border:1px solid #d8dee9;border-radius:8px;font:inherit}
.etm-reqcat-status{font-size:13px;color:#00A640;font-weight:600}

/* Register operator claim/manual mode toggle */
.etm-op-mode{display:flex;gap:10px;margin:0 0 14px;flex-wrap:wrap}
.etm-op-modeopt{flex:1;min-width:170px;display:flex;align-items:center;gap:8px;padding:11px 14px;border:1.5px solid #d8dee9;border-radius:10px;cursor:pointer;font-size:14px;font-weight:600;color:#33415a;background:#fff}
.etm-op-modeopt:has(input:checked){border-color:#00B84A;background:#f3fbf9;color:#062F66}
.etm-op-modeopt input{accent-color:#00A640}
.etm-cosearch-picked[hidden]{display:none}

/* ── Transport & logistics services selector (operator dashboard) ── */
.etm-logi{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.etm-logi-cat{border:1px solid #e3e9f2;border-radius:12px;padding:14px 16px;background:#fff}
.etm-logi-head{display:flex;align-items:center;gap:10px;font-weight:800;color:#062F66;font-size:14.5px;cursor:pointer}
.etm-logi-head input{width:17px;height:17px;accent-color:#00B84A;flex-shrink:0}
.etm-logi-subs{display:flex;flex-direction:column;gap:7px;margin:12px 0 2px;padding-left:27px}
.etm-logi-sub{display:flex;align-items:center;gap:9px;font-size:13.5px;color:#475569;cursor:pointer}
.etm-logi-sub input{width:15px;height:15px;accent-color:#00B84A;flex-shrink:0}
@media(max-width:680px){.etm-logi{grid-template-columns:1fr}}

/* ETM bio rich-text editor */
.etm-rte{border:1px solid #cbd5e1;border-radius:8px;overflow:hidden;background:#fff}
.etm-rte-toolbar{display:flex;gap:3px;padding:6px;border-bottom:1px solid #e2e8f0;background:#f8fafc;flex-wrap:wrap}
.etm-rte-toolbar button{min-width:30px;height:28px;padding:0 9px;border:1px solid #cbd5e1;background:#fff;border-radius:5px;cursor:pointer;font-size:13px;line-height:1;color:#334155}
.etm-rte-toolbar button:hover{background:#e2e8f0}
.etm-rte-area{min-height:150px;padding:10px 12px;font-size:14px;line-height:1.55;color:#1e293b;outline:none}
.etm-rte-area:focus{box-shadow:inset 0 0 0 2px rgba(0,166,64,.25)}
.etm-rte-area p{margin:0 0 .6em}
.etm-rte-area ul,.etm-rte-area ol{margin:0 0 .6em;padding-left:1.3em}
.etm-rte-help{font-size:12px;color:#64748b;margin:6px 2px 0}

/* =====================================================================
   DASHBOARD 2.0 — modern app-style reskin (visual only, scoped to
   .etm-dashboard so the public site is untouched). Builds on the existing
   --etm-brand-* tokens. No markup/logic depends on these rules.
   ===================================================================== */

/* ---- Page frame: calmer app canvas ---- */
.etm-dashboard{gap:26px;}
.etm-wrap.etm-dashboard{max-width:1320px;}

/* ---- Sidebar: cleaner identity + nav rail ---- */
.etm-dash-side{padding:16px 14px 14px;border-radius:20px;box-shadow:0 18px 40px -28px rgba(6,47,102,.7);}
.etm-dash-user{gap:13px;padding:8px 8px 16px;align-items:center;}
.etm-dash-user img{width:46px;height:46px;border-radius:14px;box-shadow:0 4px 12px -6px rgba(0,0,0,.5);}
.etm-dash-user strong{font-size:14.5px;font-weight:700;letter-spacing:-.01em;}
.etm-dash-role{display:block;color:#9fb2c9;font-size:11.5px;margin-top:1px;}
.etm-dash-user .etm-badge-pill{margin-top:6px;padding:3px 9px;border-radius:99px;font-size:10.5px;font-weight:700;background:rgba(255,255,255,.1);color:#cfe9ff;}
.etm-dash-nav{gap:3px;}
.etm-dash-nav a{padding:11px 13px;border-radius:11px;font-size:14px;font-weight:600;color:#aebfd4;}
.etm-dash-nav a .etm-ico{width:19px;height:19px;opacity:.92;}
.etm-dash-nav a:hover{background:rgba(255,255,255,.07);color:#fff;}
.etm-dash-nav a.is-active{box-shadow:0 10px 22px -12px rgba(0,184,74,.85);}
.etm-dash-nav a.is-active .etm-ico{opacity:1;}

/* ---- Tab heading ---- */
.etm-dashboard .etm-tab-head h1{font-size:24px;font-weight:800;letter-spacing:-.02em;}
.etm-dashboard .etm-tab-head .etm-muted{font-size:13.5px;}

/* ---- Cards ---- */
.etm-dashboard .etm-card{border-radius:18px;border-color:#e8edf4;box-shadow:0 10px 30px -26px rgba(6,47,102,.6);padding:22px 24px;}
.etm-dashboard .etm-card h2{font-size:16px;font-weight:800;letter-spacing:-.01em;margin-bottom:14px;}

/* ---- Stat cards: app KPI tiles ---- */
.etm-dashboard .etm-stat-row{gap:16px;}
.etm-dashboard .etm-stat-card{border-radius:18px;padding:20px 20px 18px;}
.etm-dashboard a.etm-stat-card{text-decoration:none;}
.etm-dashboard .etm-stat-card:before{width:0;}
.etm-dashboard .etm-stat-ico{position:static;width:38px;height:38px;border-radius:12px;margin-bottom:12px;}
.etm-dashboard .etm-stat-num{font-size:28px;font-weight:800;margin-bottom:2px;}
.etm-dashboard .etm-stat-lbl{font-size:12.5px;font-weight:600;color:var(--etm-muted);}
.etm-dashboard .etm-stat-sub{display:block;font-style:normal;font-weight:500;color:#94a3b8;font-size:11px;margin-top:1px;}

/* ---- Quick actions: app list rows ---- */
.etm-dashboard .etm-quick-grid a{padding:13px 15px;border-radius:13px;font-weight:650;font-size:13.5px;}

/* ---- Profile header (hero) ---- */
.etm-dashboard .etm-dash-header{border-radius:20px;padding:22px 26px;box-shadow:0 14px 36px -28px rgba(6,47,102,.6);}
.etm-dashboard .etm-dh-avatar img{border-radius:18px;}
.etm-dashboard .etm-dh-name{font-size:23px;font-weight:800;}
.etm-dashboard .etm-dh-ring svg{width:60px;height:60px;}
.etm-dashboard .etm-dh-share{margin-top:10px;}
.etm-dashboard .etm-dh-share-label{font-size:11px;font-weight:700;color:var(--etm-muted);display:inline-flex;align-items:center;gap:5px;}
.etm-dashboard .etm-dh-share-row{display:flex;gap:6px;align-items:center;margin-top:5px;}
.etm-dashboard .etm-dh-share-link{font-size:12px;background:#f1f6fb;border:1px solid #e2ebf3;border-radius:8px;padding:5px 9px;color:#334b66;}

/* ---- Upgrade / conversion cards: MORE prominent, modern, not spammy ---- */
.etm-dashboard .etm-upgrade-card{
  border:none;border-radius:20px;overflow:hidden;position:relative;
  background:linear-gradient(135deg,var(--etm-brand-navy) 0%,var(--etm-brand-navy2) 58%,#062F66 100%);
  color:#fff;box-shadow:0 20px 46px -24px rgba(6,47,102,.7);
  padding:26px 28px;
}
.etm-dashboard .etm-upgrade-card:after{
  content:"";position:absolute;right:-60px;top:-60px;width:220px;height:220px;
  background:radial-gradient(circle at center,rgba(0,184,74,.42),transparent 70%);pointer-events:none;
}
.etm-dashboard .etm-upgrade-body{position:relative;z-index:1;max-width:640px;}
.etm-dashboard .etm-upgrade-flag{
  display:inline-flex;align-items:center;gap:7px;font-size:11px;font-weight:800;
  letter-spacing:.06em;text-transform:uppercase;color:#7fe9d6;
  background:rgba(0,184,74,.14);border:1px solid rgba(127,233,214,.4);
  padding:5px 12px;border-radius:99px;margin-bottom:13px;
}
.etm-dashboard .etm-upgrade-flag .etm-ico{width:13px;height:13px;}
.etm-dashboard .etm-upgrade-card h2{color:#fff;font-size:20px;font-weight:800;line-height:1.25;margin:0 0 9px;letter-spacing:-.01em;}
.etm-dashboard .etm-upgrade-card p{color:#cfdcea;font-size:14px;line-height:1.55;margin:0 0 18px;}
.etm-dashboard .etm-upgrade-card p strong{color:#fff;}
.etm-dashboard .etm-upgrade-card .etm-btn-teal{
  background:linear-gradient(135deg,#00B84A,#00A640);color:#022b24;font-weight:800;font-size:14.5px;
  padding:13px 22px;border-radius:12px;box-shadow:0 12px 26px -8px rgba(0,184,74,.6);
}
.etm-dashboard .etm-upgrade-card .etm-btn-teal:hover{filter:brightness(1.06);transform:translateY(-1px);color:#022b24;}

/* ---- Post-payment / welcome banner ---- */
.etm-dashboard .etm-paid-banner{
  display:flex;align-items:center;gap:15px;border-radius:16px;padding:16px 20px;margin-bottom:22px;
  background:linear-gradient(135deg,#ecfdf5,#fff);border:1px solid #a7f3d0;
}
.etm-dashboard .etm-paid-ico{flex:0 0 auto;width:38px;height:38px;border-radius:11px;background:#00A640;color:#fff;display:inline-flex;align-items:center;justify-content:center;}
.etm-dashboard .etm-paid-body strong{display:block;color:#065f46;font-size:14.5px;}
.etm-dashboard .etm-paid-body span{color:#0f766e;font-size:13px;}

/* ---- Overview two-column ---- */
.etm-dashboard .etm-ov-grid{grid-template-columns:1fr 1fr;gap:20px;}

/* ---- Account switcher: modern segmented control ---- */
.etm-acct-switch{border-radius:16px;background:linear-gradient(135deg,var(--etm-brand-navy),var(--etm-brand-navy2));padding:13px 15px;box-shadow:0 14px 34px -22px rgba(6,47,102,.7);}
.etm-acct-tab{border-radius:11px;font-weight:700;font-size:13.5px;}
.etm-acct-tab.is-active{box-shadow:0 8px 20px -10px rgba(0,184,74,.7);}

/* =====================================================================
   MOBILE — app-like (<=767px)
   ===================================================================== */
@media (max-width:767px){
  .etm-wrap.etm-dashboard{padding:14px 13px 28px;}
  .etm-dashboard{display:block;}
  /* sidebar becomes a top app-bar card; burger (already in shell) reveals nav */
  .etm-dash-side{position:static;border-radius:18px;margin-bottom:14px;padding:14px;}
  .etm-dash-user{padding-bottom:12px;}
  .etm-dash-side .etm-dash-burger{border-radius:12px;font-weight:700;}
  /* main column full width */
  .etm-dash-main{min-width:0;}
  .etm-dashboard .etm-tab-head{flex-direction:column;gap:8px;margin-bottom:14px;}
  .etm-dashboard .etm-tab-head h1{font-size:21px;}
  /* cards edge-to-edge feel */
  .etm-dashboard .etm-card{border-radius:16px;padding:18px 16px;margin-bottom:14px;}
  /* KPI tiles: 2-up grid */
  .etm-dashboard .etm-stat-row{grid-template-columns:1fr 1fr;gap:11px;}
  .etm-dashboard .etm-stat-card{padding:15px 15px 13px;border-radius:15px;}
  .etm-dashboard .etm-stat-num{font-size:24px;}
  .etm-dashboard .etm-stat-ico{width:32px;height:32px;margin-bottom:8px;}
  /* quick actions single column, big tap targets */
  .etm-dashboard .etm-quick-grid{grid-template-columns:1fr;gap:9px;}
  .etm-dashboard .etm-quick-grid a{padding:15px 16px;font-size:15px;}
  /* overview stacks */
  .etm-dashboard .etm-ov-grid{grid-template-columns:1fr;gap:14px;}
  /* profile header stacks cleanly */
  .etm-dashboard .etm-dash-header{flex-direction:column;align-items:flex-start;gap:14px;padding:18px 18px;border-radius:18px;}
  .etm-dashboard .etm-dh-side{flex-direction:row;align-items:center;gap:14px;width:100%;justify-content:space-between;}
  .etm-dashboard .etm-dh-avatar img{width:72px;height:72px;}
  /* upgrade card: comfortable, big CTA */
  .etm-dashboard .etm-upgrade-card{padding:22px 18px;border-radius:18px;}
  .etm-dashboard .etm-upgrade-card h2{font-size:18px;}
  .etm-dashboard .etm-upgrade-card .etm-btn-teal{width:100%;justify-content:center;padding:15px;}
  /* account switcher horizontal scroll */
  .etm-acct-switch{flex-direction:column;align-items:stretch;}
  .etm-acct-switch-tabs{overflow-x:auto;flex-wrap:nowrap;-webkit-overflow-scrolling:touch;padding-bottom:2px;}
  .etm-acct-tab{flex:0 0 auto;}
  /* forms comfy on mobile */
  .etm-dashboard .etm-field input,.etm-dashboard .etm-field textarea,.etm-dashboard .etm-field select{font-size:16px;padding:12px 13px;}
  .etm-dashboard .etm-btn{padding:13px 18px;}
}

/* ---- Claim card: clean, modern, tight (overrides shell.php inline styles) ---- */
.etm-dashboard .etm-claim-card{border-radius:20px;box-shadow:0 20px 46px -26px rgba(6,47,102,.65);border:1px solid #e8edf4;}
.etm-dashboard .etm-claim-head{
  padding:22px 22px 20px;
  background:linear-gradient(135deg,var(--etm-brand-navy) 0%,var(--etm-brand-navy2) 60%,#062F66 100%);
}
.etm-dashboard .etm-claim-head:after{background:radial-gradient(circle at center,rgba(0,184,74,.45),transparent 70%);}
.etm-dashboard .etm-claim-title{font-size:21px;font-weight:800;line-height:1.2;margin:0 0 8px;letter-spacing:-.01em;}
.etm-dashboard .etm-claim-title span{color:#7fe9d6;}
.etm-dashboard .etm-claim-sub{font-size:13.5px;color:#cfdcea;margin:0;}
.etm-dashboard .etm-claim-body{padding:18px 20px 20px;}
.etm-dashboard .etm-claim-unlock-h{font-size:11px;letter-spacing:.05em;}
.etm-dashboard .etm-claim-benefits{gap:11px;margin-bottom:18px;}
.etm-dashboard .etm-claim-benefits li{font-size:13.5px;}
.etm-dashboard .etm-claim-cta{border-radius:13px;font-size:15px;font-weight:800;}
@media (max-width:1100px){
  .etm-dashboard .etm-claim-side{order:-1;}
}

/* =====================================================================
   DASHBOARD 2.0 — review refinements (Claude pass): stat hierarchy,
   empty-state tightening, VIP banner harmonised to brand teal.
   ===================================================================== */
/* Stat tiles: strong value/label hierarchy (override base + brand layer) */
.etm-dashboard .etm-stat-card .etm-stat-num{font-size:30px;line-height:1;font-weight:800;color:var(--etm-brand-navy);margin:0 0 4px;letter-spacing:-.02em;}
.etm-dashboard .etm-stat-card .etm-stat-lbl{font-size:12.5px;line-height:1.25;font-weight:600;color:#6b7280;}
.etm-dashboard .etm-stat-card .etm-stat-sub{color:#9aa6b5;font-weight:500;}

/* Tighten cards so sparse/empty states don't look hollow */
.etm-dashboard .etm-card{padding:20px 22px;}
.etm-dashboard .etm-card h2{margin-bottom:12px;}
.etm-dashboard .etm-ov-grid > .etm-card{min-height:0;}
.etm-dashboard .etm-mini-list{min-height:0;}
.etm-dashboard .etm-card > .etm-muted:only-of-type{margin:2px 0 0;}

/* Upgrade/claim CTA: a touch more substance */
.etm-dashboard .etm-upgrade-card .etm-btn-teal,
.etm-dashboard .etm-claim-cta{padding-top:15px;padding-bottom:15px;}

/* VIP "share your feedback" banner: harmonise to brand teal (was loud red) */
.etm-dashboard .etm-vip-cta{
  background:linear-gradient(135deg,var(--etm-brand-navy),var(--etm-brand-navy2));
  box-shadow:0 14px 34px -20px rgba(6,47,102,.6);
}
.etm-dashboard .etm-vip-cta .etm-vip-ico{color:#7fe9d6;}
@media (max-width:767px){
  /* mobile 2-up tiles: protect hierarchy */
  .etm-dashboard .etm-stat-card .etm-stat-num{font-size:25px;}
  .etm-dashboard .etm-stat-card .etm-stat-lbl{font-size:11.5px;}
}

/* ================================================================
   ETM Dashboard — Clean reskin v2.1  (LinkedIn / Facebook style)
   2026-06-14 · CSS ONLY · all rules scoped to .etm-dashboard
   No markup, no JS, no functionality changed — pure reskin.
   ================================================================ */

/* ---- Canvas: airy, generous white space ---- */
.etm-dashboard{gap:28px;align-items:start;}
.etm-dashboard .etm-dash-main{display:flex;flex-direction:column;gap:20px;}
.etm-dashboard .etm-stat-row{margin-bottom:0;}

/* ---- Remove "AI eyebrow" styling (no uppercase letter-spaced kickers) ---- */
.etm-dashboard .etm-dash-role,
.etm-dashboard .etm-acct-switch-label,
.etm-dashboard .etm-upgrade-flag,
.etm-dashboard .etm-eyebrow,
.etm-dashboard .etm-kicker,
.etm-dashboard .etm-overline{
  text-transform:none !important;
  letter-spacing:0 !important;
}
.etm-dashboard .etm-dash-role{font-size:12.5px;color:#9fb3d6;font-weight:500;}

/* ---- Sidebar: brand navy, cleaner + softer depth ---- */
.etm-dashboard .etm-dash-side{
  background:linear-gradient(180deg,#062F66 0%,#062F66 100%);
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 20px 50px -34px rgba(6,47,102,.6);
  padding:18px 12px;
}
.etm-dashboard .etm-dash-nav a{font-weight:500;}
.etm-dashboard .etm-dash-nav a:hover{transform:translateX(2px);}
.etm-dashboard .etm-dash-nav a.is-active{
  background:linear-gradient(135deg,#00B84A,#00A640);color:#00231d;font-weight:600;
  box-shadow:0 10px 24px -14px rgba(0,184,74,.85);
}

/* ---- Cards: clean white, soft, rounded (exclude the dark upgrade/claim banner) ---- */
.etm-dashboard .etm-card:not(.etm-upgrade-card),
.etm-dashboard .etm-views-card,
.etm-dashboard .etm-dash-header{
  background:#fff;border:1px solid #e8edf3;border-radius:16px;
  box-shadow:0 1px 2px rgba(16,24,40,.04),0 8px 24px -20px rgba(16,24,40,.25);
}

/* ---- Headings: clean, bold, brand navy ---- */
.etm-dashboard .etm-tab-head h1{font-size:23px;font-weight:800;letter-spacing:-.02em;color:#062F66;}
.etm-dashboard .etm-tab-head .etm-muted{font-size:13.5px;}

/* ---- Stat tiles: icon chip on top, big number (metric tiles) ---- */
.etm-dashboard .etm-stat-row{gap:16px;}
.etm-dashboard .etm-stat-card{
  position:relative;display:flex;flex-direction:column;align-items:flex-start;
  padding:20px;border:1px solid #e8edf3;border-radius:16px;background:#fff;
  box-shadow:0 1px 2px rgba(16,24,40,.04);
}
.etm-dashboard .etm-stat-card:before{display:none;}
.etm-dashboard .etm-stat-card:hover{transform:translateY(-2px);box-shadow:0 14px 30px -20px rgba(6,47,102,.45);}
.etm-dashboard .etm-stat-ico{
  position:static;width:40px;height:40px;border-radius:12px;margin:0 0 14px;
  background:rgba(0,184,74,.12);display:inline-flex;align-items:center;justify-content:center;
}
.etm-dashboard .etm-stat-ico .etm-ico{width:20px;height:20px;color:#00A640;}
.etm-dashboard .etm-stat-num{font-size:30px;font-weight:800;letter-spacing:-.02em;color:#062F66;padding-right:0;}
.etm-dashboard .etm-stat-lbl{font-size:13px;color:#64748b;font-weight:500;margin-top:5px;}

/* ---- Profile / claim header: prominent, better visibility ---- */
.etm-dashboard .etm-dash-header{padding:22px 26px;}

/* ---- Upgrade / claim CTA card: keep its existing dark styling, just lift it ---- */
.etm-dashboard .etm-upgrade-card{
  box-shadow:0 16px 36px -24px rgba(6,47,102,.6);
}

/* ---- Quick actions tiles ---- */
.etm-dashboard .etm-quick-grid a{border-radius:12px;border-color:#e8edf3;}

/* ---- Profile edit: each section its own clean, sectioned card ---- */
.etm-dashboard .etm-profile-form{display:flex;flex-direction:column;gap:20px;}
.etm-dashboard .etm-profile-form > .etm-card{
  background:#fff;border:1px solid #e8edf3;border-radius:16px;
  padding:24px 26px;margin:0;
  box-shadow:0 1px 2px rgba(16,24,40,.04),0 8px 24px -20px rgba(16,24,40,.25);
}
.etm-dashboard .etm-profile-form > .etm-card > h2{
  font-size:16.5px;font-weight:700;color:#062F66;margin:0 0 18px;
  padding-bottom:14px;border-bottom:1px solid #eef2f7;letter-spacing:-.01em;
}
.etm-dashboard .etm-form-actions{
  background:#fff;border:1px solid #e8edf3;border-radius:14px;
  padding:14px 18px;box-shadow:0 1px 2px rgba(16,24,40,.04);
}

/* ---- Mobile ---- */
@media (max-width:767px){
  .etm-dashboard{gap:16px;}
  .etm-dashboard .etm-dash-main{gap:14px;}
  .etm-dashboard .etm-stat-card{padding:16px;}
  .etm-dashboard .etm-stat-ico{width:36px;height:36px;margin-bottom:10px;}
  .etm-dashboard .etm-stat-num{font-size:24px;line-height:1.1;}
  .etm-dashboard .etm-profile-form > .etm-card{padding:18px 16px;}
}
/* ==== end Dashboard clean reskin v2.1 ==== */
/* ==================================================================
   ETM DASHBOARD — COMPLETE REVAMP v3.0   (2026-06-14)
   CSS ONLY · scoped to .etm-dashboard · NO markup/JS/function changes.
   Goal: materially different, calm, professional, generous white space.
   Light surfaces, hairline borders, ONE restrained teal accent,
   flat (no gradients, no neon glows, no AI-dashboard clichés).
   Applies to ALL user types (TM / Operator / Service Provider /
   Consultant / Training Provider) — same shared dashboard shell.
   Everything below is appended last, so it wins by source order.
   To revert: delete this block (between the v3.0 banners).
   ================================================================== */

/* ---- Design tokens (local, scoped names) ---- */
.etm-dashboard{
  --d-canvas:#f4f5f7;     /* page canvas            */
  --d-surface:#ffffff;    /* cards                  */
  --d-line:#e6e8ec;       /* hairline border        */
  --d-line-soft:#eef0f3;  /* inner dividers         */
  --d-ink:#101828;        /* primary text           */
  --d-ink-2:#475467;      /* secondary text         */
  --d-muted:#667085;      /* muted / labels         */
  --d-accent:#00A640;     /* single accent (teal)   */
  --d-accent-d:#0f766e;   /* accent pressed/active  */
  --d-accent-2:#f0fdfa;   /* accent tint bg         */
  --d-accent-br:#cbeee8;  /* accent tint border     */
  --d-radius:12px;
  --d-shadow:0 1px 2px rgba(16,24,40,.04), 0 1px 3px rgba(16,24,40,.06);
}

/* ---- Canvas + rhythm ---- */
.etm-dashboard{
  grid-template-columns:256px 1fr;
  gap:32px;
  align-items:start;
  background:var(--d-canvas);
}
.etm-dashboard .etm-dash-main{
  display:flex; flex-direction:column; gap:24px;
}

/* =================================================================
   SIDEBAR — light, calm, LinkedIn-style rail
   ================================================================= */
.etm-dashboard .etm-dash-side{
  background:var(--d-surface) !important;
  border:1px solid var(--d-line);
  border-radius:16px;
  box-shadow:var(--d-shadow);
  padding:22px 16px;
  position:sticky; top:20px;
}

/* user block */
.etm-dashboard .etm-dash-user{
  display:flex; align-items:center; gap:13px;
  padding:0 6px 18px;
  margin-bottom:16px;
  border-bottom:1px solid var(--d-line-soft);
}
.etm-dashboard .etm-dash-user img{
  width:46px; height:46px; border-radius:50%; object-fit:cover;
  border:1px solid var(--d-line);
}
.etm-dashboard .etm-dash-user-id{display:flex; flex-direction:column; gap:2px; min-width:0;}
.etm-dashboard .etm-dash-user-id strong{
  font-size:15px; font-weight:700; color:var(--d-ink);
  letter-spacing:-.01em; line-height:1.2;
}
.etm-dashboard .etm-dash-role{
  font-size:12.5px; color:var(--d-muted); font-weight:500;
  text-transform:none !important; letter-spacing:0 !important;
}
.etm-dashboard .etm-dash-user .etm-badge-pill{
  align-self:flex-start; margin-top:3px;
  font-size:10.5px; font-weight:600; letter-spacing:.01em;
  padding:2px 9px; border-radius:999px;
  background:#f2f4f7; color:#475467; border:1px solid var(--d-line);
  text-transform:none;
}

/* nav */
.etm-dashboard .etm-dash-nav{display:flex; flex-direction:column; gap:3px;}
.etm-dashboard .etm-dash-nav a{
  display:flex; align-items:center; gap:12px;
  padding:10px 12px; border-radius:9px;
  color:#344054; font-size:14px; font-weight:500;
  text-decoration:none; transition:background .12s,color .12s;
}
.etm-dashboard .etm-dash-nav a svg{width:19px; height:19px; color:#98a2b3; transition:color .12s; flex:none;}
.etm-dashboard .etm-dash-nav a:hover{background:#f6f7f9; color:var(--d-ink); transform:none;}
.etm-dashboard .etm-dash-nav a:hover svg{color:#667085;}
.etm-dashboard .etm-dash-nav a.is-active{
  background:var(--d-accent-2); color:var(--d-accent-d); font-weight:600;
  box-shadow:none;
}
.etm-dashboard .etm-dash-nav a.is-active svg{color:var(--d-accent-d);}
/* footer-ish nav items */
.etm-dashboard .etm-dash-nav a.etm-nav-forum,
.etm-dashboard .etm-dash-nav a.etm-nav-site{margin-top:2px;}
.etm-dashboard .etm-dash-nav a.etm-nav-site{
  margin-top:10px; padding-top:14px; border-top:1px solid var(--d-line-soft); border-radius:0 0 9px 9px;
}
.etm-dashboard .etm-dash-nav a.etm-nav-logout{color:#b42318;}
.etm-dashboard .etm-dash-nav a.etm-nav-logout svg{color:#d92d20;}
.etm-dashboard .etm-dash-nav a.etm-nav-logout:hover{background:#fef3f2; color:#912018;}

/* mobile burger */
.etm-dashboard .etm-dash-burger{
  background:var(--d-surface); border:1px solid var(--d-line);
  color:var(--d-ink); border-radius:10px;
}
.etm-dashboard .etm-dash-burger-icon span{background:var(--d-ink);}

/* =================================================================
   ACCOUNT SWITCHER — clean segmented control (inline-styled in markup,
   so force with !important)
   ================================================================= */
.etm-dashboard .etm-acct-switch{
  display:flex !important; flex-wrap:wrap; align-items:center; gap:10px !important;
  background:var(--d-surface) !important;
  border:1px solid var(--d-line) !important;
  border-radius:14px !important;
  box-shadow:var(--d-shadow) !important;
  padding:12px 14px !important;
}
.etm-dashboard .etm-acct-switch-label{
  display:inline-flex !important; align-items:center; gap:6px;
  font-size:12px !important; font-weight:600 !important; color:var(--d-muted) !important;
  text-transform:none !important; letter-spacing:0 !important;
}
.etm-dashboard .etm-acct-switch-label svg{width:15px; height:15px; color:var(--d-muted);}
.etm-dashboard .etm-acct-switch-tabs{display:flex !important; flex-wrap:wrap; gap:8px !important;}
.etm-dashboard .etm-acct-tab{
  display:inline-flex !important; align-items:center; gap:7px;
  padding:8px 14px !important; border-radius:999px !important;
  background:#f6f7f9 !important; border:1px solid var(--d-line) !important;
  color:#344054 !important; font-size:13px !important; font-weight:600 !important;
  text-decoration:none !important; box-shadow:none !important; transition:.12s;
}
.etm-dashboard .etm-acct-tab svg{width:15px; height:15px; color:#98a2b3;}
.etm-dashboard .etm-acct-tab:hover{background:#eef0f3 !important; color:var(--d-ink) !important;}
.etm-dashboard .etm-acct-tab.is-active{
  background:var(--d-accent) !important; border-color:var(--d-accent) !important;
  color:#fff !important;
}
.etm-dashboard .etm-acct-tab.is-active svg{color:#fff;}
.etm-dashboard .etm-acct-tab em{
  font-style:normal; font-size:10.5px; font-weight:600;
  opacity:.85; text-transform:none; letter-spacing:.02em;
}

/* =================================================================
   VIP / FEEDBACK BANNER — flat soft strip (was loud gradient)
   ================================================================= */
.etm-dashboard .etm-vip-banner,
.etm-dashboard .etm-vip-cta{
  display:flex !important; align-items:center; gap:12px !important;
  background:var(--d-accent-2) !important;
  border:1px solid var(--d-accent-br) !important;
  border-radius:12px !important;
  box-shadow:none !important;
  padding:13px 18px !important;
  color:#0f5e57 !important; text-decoration:none !important;
}
.etm-dashboard .etm-vip-cta .etm-vip-ico{color:var(--d-accent-d) !important; font-size:16px;}
.etm-dashboard .etm-vip-cta .etm-vip-text,
.etm-dashboard .etm-vip-cta .etm-vip-text strong{color:#0f5e57 !important; font-weight:600;}

/* =================================================================
   PROFILE HEADER — clean white card
   ================================================================= */
.etm-dashboard .etm-dash-header{
  background:var(--d-surface) !important;
  border:1px solid var(--d-line);
  border-radius:var(--d-radius);
  box-shadow:var(--d-shadow);
  padding:24px 26px;
  display:flex; gap:20px; align-items:flex-start;
}
.etm-dashboard .etm-dh-avatar img{
  width:64px; height:64px; border-radius:14px; object-fit:cover; border:1px solid var(--d-line);
}
.etm-dashboard .etm-dh-badge{
  display:inline-flex; align-items:center; gap:5px;
  font-size:11px; font-weight:600; letter-spacing:0; text-transform:none;
  padding:3px 10px; border-radius:999px;
  background:#f2f4f7; color:#475467; border:1px solid var(--d-line); margin-bottom:8px;
}
.etm-dashboard .etm-dh-greet{font-size:13px; color:var(--d-muted); margin:0 0 2px;}
.etm-dashboard .etm-dh-name{font-size:22px; font-weight:800; color:var(--d-ink); letter-spacing:-.02em; margin:0;}
.etm-dashboard .etm-dh-regions{margin:10px 0 0; padding:0; list-style:none; display:flex; flex-wrap:wrap; gap:6px;}
.etm-dashboard .etm-dh-regions li{
  font-size:12px; color:var(--d-ink-2); background:#f6f7f9;
  border:1px solid var(--d-line); border-radius:999px; padding:3px 10px;
}
.etm-dashboard .etm-dh-side{margin-left:auto; display:flex; flex-direction:column; align-items:flex-end; gap:12px;}
.etm-dashboard .etm-dh-ring text{fill:var(--d-ink); font-weight:700;}
.etm-dashboard .etm-dh-share{width:100%;}
.etm-dashboard .etm-dh-share-label{font-size:11px; color:var(--d-muted); text-transform:none; letter-spacing:0;}
.etm-dashboard .etm-dh-share-row{
  display:flex; align-items:center; gap:8px; margin-top:6px;
  background:#f6f7f9; border:1px solid var(--d-line); border-radius:10px; padding:5px 6px 5px 12px;
}
.etm-dashboard .etm-dh-share-link{font-size:12.5px; color:var(--d-ink-2); background:none; padding:0;}

/* =================================================================
   SECTION HEADINGS
   ================================================================= */
.etm-dashboard .etm-tab-head h1{
  font-size:24px; font-weight:800; color:var(--d-ink); letter-spacing:-.022em; margin:0 0 3px;
}
.etm-dashboard .etm-tab-head .etm-muted{font-size:14px; color:var(--d-muted);}

/* =================================================================
   UPGRADE / CLAIM CARD — flat, readable, accent-left (FIX: was
   white-on-light in some widths). No gradient, no glow.
   ================================================================= */
.etm-dashboard .etm-upgrade-card{
  background:var(--d-accent-2) !important;
  border:1px solid var(--d-accent-br) !important;
  border-left:4px solid var(--d-accent) !important;
  border-radius:var(--d-radius) !important;
  box-shadow:none !important;
  padding:24px 26px !important;
  overflow:hidden; position:relative;
}
.etm-dashboard .etm-upgrade-card:after{display:none !important;}   /* kill radial glow */
.etm-dashboard .etm-upgrade-body{position:relative; z-index:1; max-width:680px;}
.etm-dashboard .etm-upgrade-flag{
  display:inline-flex; align-items:center; gap:6px;
  font-size:11px; font-weight:700; letter-spacing:.02em; text-transform:none;
  color:var(--d-accent-d); background:#fff; border:1px solid var(--d-accent-br);
  padding:4px 11px; border-radius:999px; margin-bottom:12px;
}
.etm-dashboard .etm-upgrade-flag svg{width:13px; height:13px; color:var(--d-accent-d);}
.etm-dashboard .etm-upgrade-card h2{
  color:var(--d-ink) !important; font-size:19px; font-weight:800; line-height:1.3;
  margin:0 0 8px; letter-spacing:-.01em;
}
.etm-dashboard .etm-upgrade-card p{color:var(--d-ink-2) !important; font-size:14px; line-height:1.6; margin:0 0 18px;}
.etm-dashboard .etm-upgrade-card p strong{color:var(--d-ink) !important;}
.etm-dashboard .etm-upgrade-card .etm-btn-teal{
  background:var(--d-accent) !important; color:#fff !important; font-weight:700; font-size:14px;
  padding:12px 22px; border-radius:10px; box-shadow:none !important; filter:none !important;
}
.etm-dashboard .etm-upgrade-card .etm-btn-teal:hover{background:var(--d-accent-d) !important; transform:none !important;}

/* =================================================================
   STAT TILES — flat metric tiles, big number, lots of padding
   ================================================================= */
.etm-dashboard .etm-stat-row{display:grid; grid-template-columns:repeat(5,1fr); gap:16px; margin:0;}
.etm-dashboard .etm-stat-card{
  display:flex; flex-direction:column; align-items:flex-start; gap:0;
  background:var(--d-surface); border:1px solid var(--d-line); border-radius:var(--d-radius);
  padding:20px; box-shadow:var(--d-shadow); transition:box-shadow .12s,transform .12s;
}
.etm-dashboard .etm-stat-card:before{display:none !important;}
.etm-dashboard a.etm-stat-card:hover{transform:translateY(-1px); box-shadow:0 4px 12px -4px rgba(16,24,40,.16); text-decoration:none;}
.etm-dashboard .etm-stat-ico{
  position:static; width:40px; height:40px; border-radius:11px; margin:0 0 14px;
  background:var(--d-accent-2); border:1px solid var(--d-accent-br);
  display:inline-flex; align-items:center; justify-content:center;
}
.etm-dashboard .etm-stat-ico svg{width:19px; height:19px; color:var(--d-accent-d);}
.etm-dashboard .etm-stat-num{font-size:28px; font-weight:800; color:var(--d-ink); letter-spacing:-.02em; line-height:1.1; padding:0;}
.etm-dashboard .etm-stat-lbl{font-size:13px; color:var(--d-muted); font-weight:500; margin-top:6px;}
.etm-dashboard .etm-stat-sub{font-style:normal; color:var(--d-muted);}

/* =================================================================
   PROFILE-VIEWS CARD + range buttons
   ================================================================= */
.etm-dashboard .etm-views-card{
  background:var(--d-surface) !important; border:1px solid var(--d-line);
  border-radius:var(--d-radius); box-shadow:var(--d-shadow); padding:22px 24px;
}
.etm-dashboard .etm-views-head h2{font-size:16px; font-weight:700; color:var(--d-ink);}
.etm-dashboard .etm-views-ranges{display:flex !important; flex-wrap:wrap; gap:4px !important; background:#f6f7f9; border:1px solid var(--d-line); border-radius:10px; padding:3px;}
.etm-dashboard .etm-views-ranges button{
  border:none !important; background:transparent !important; color:var(--d-muted) !important;
  font-size:12.5px; font-weight:600; padding:6px 12px !important; border-radius:7px !important; box-shadow:none !important;
}
.etm-dashboard .etm-views-ranges button.is-active{background:var(--d-surface) !important; color:var(--d-accent-d) !important; box-shadow:0 1px 2px rgba(16,24,40,.08) !important;}
.etm-dashboard .etm-views-big{font-size:30px; font-weight:800; color:var(--d-ink); letter-spacing:-.02em;}
.etm-dashboard .etm-views-sub,.etm-dashboard .etm-views-total{color:var(--d-muted);}

/* =================================================================
   OVERVIEW GRID — quick actions + recent leads
   ================================================================= */
.etm-dashboard .etm-ov-grid{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
.etm-dashboard .etm-ov-grid .etm-card{
  background:var(--d-surface) !important; border:1px solid var(--d-line);
  border-radius:var(--d-radius); box-shadow:var(--d-shadow); padding:22px 24px;
}
.etm-dashboard .etm-ov-grid .etm-card h2{font-size:16px; font-weight:700; color:var(--d-ink); margin:0 0 16px;}
.etm-dashboard .etm-quick-grid{display:grid; grid-template-columns:1fr 1fr; gap:12px;}
.etm-dashboard .etm-quick-grid a{
  display:flex; align-items:center; gap:10px;
  padding:14px; border-radius:10px; border:1px solid var(--d-line); background:#fcfcfd;
  color:var(--d-ink); font-weight:600; font-size:13.5px; text-decoration:none; transition:.12s;
}
.etm-dashboard .etm-quick-grid a:hover{background:var(--d-accent-2); border-color:var(--d-accent-br); color:var(--d-accent-d);}
.etm-dashboard .etm-quick-grid a svg{width:18px; height:18px; color:var(--d-accent-d);}

/* =================================================================
   GENERIC CARDS (anything else inside the dashboard) — flat white,
   excludes the upgrade card which is intentionally tinted.
   ================================================================= */
.etm-dashboard .etm-card:not(.etm-upgrade-card){
  background:var(--d-surface);
  border:1px solid var(--d-line);
  border-radius:var(--d-radius);
  box-shadow:var(--d-shadow);
}

/* profile-edit: each section its own clean card */
.etm-dashboard .etm-profile-form{display:flex; flex-direction:column; gap:22px;}
.etm-dashboard .etm-profile-form > .etm-card{padding:24px 26px; margin:0;}
.etm-dashboard .etm-profile-form > .etm-card > h2{
  font-size:16px; font-weight:700; color:var(--d-ink); margin:0 0 18px;
  padding-bottom:14px; border-bottom:1px solid var(--d-line-soft); letter-spacing:-.01em;
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width:1100px){
  .etm-dashboard .etm-stat-row{grid-template-columns:repeat(3,1fr);}
}
@media (max-width:880px){
  .etm-dashboard{grid-template-columns:1fr; gap:18px;}
  .etm-dashboard .etm-dash-main{gap:18px;}
  .etm-dashboard .etm-ov-grid{grid-template-columns:1fr;}
  .etm-dashboard .etm-stat-row{grid-template-columns:repeat(2,1fr);}
  .etm-dashboard .etm-dash-header{flex-direction:column;}
  .etm-dashboard .etm-dh-side{margin-left:0; align-items:flex-start; width:100%;}
}
@media (max-width:480px){
  .etm-dashboard .etm-stat-row{grid-template-columns:1fr 1fr; gap:12px;}
  .etm-dashboard .etm-stat-num{font-size:24px;}
  .etm-dashboard .etm-upgrade-card{padding:20px 18px !important;}
}
/* ==================== end ETM DASHBOARD REVAMP v3.0 ==================== */

/* v3.0.1 — kill the leftover dark scroll-hint fade on the now-WHITE mobile sidebar
   (was navy gradient designed for the old dark rail → showed as a black smudge
   beside the "Menu" burger). */
.etm-dashboard .etm-dash-side:after{display:none !important;}

/* v3.0.2 — mobile: account/role switch pills as a clean equal-width stack
   (were ragged: different widths, wrapping 2-then-1). Now full-width, evenly spaced. */
@media (max-width:600px){
  .etm-dashboard .etm-acct-switch{ flex-direction:column !important; align-items:stretch !important; gap:12px !important; }
  .etm-dashboard .etm-acct-switch-label{ justify-content:flex-start !important; }
  .etm-dashboard .etm-acct-switch-tabs{ display:grid !important; grid-template-columns:1fr; gap:8px !important; width:100%; }
  .etm-dashboard .etm-acct-tab{ width:100%; justify-content:flex-start !important; }
}

/* v3.0.3 — mobile <=480: align the sidebar/user (Menu) card with the main cards.
   It carried full-bleed negative margins (margin:-16px, a dark-rail leftover) so it
   sat 16px off-side and didn't line up with the cards below. */
@media (max-width:480px){
  .etm-dashboard .etm-dash-side{ margin-left:0 !important; margin-right:0 !important; }
}

/* ===================================================================
   Profile-edit revamp (2026-06-18) — stepped, sectioned editor.
   Scoped to the dashboard profile form so nothing else is affected.
   =================================================================== */

/* Account-type banner — which listing am I editing */
.etm-acct-banner{display:flex;align-items:flex-start;gap:10px;margin:0 0 18px;padding:13px 18px;
  border-radius:12px;background:#fff;border:1px solid #fecaca;border-left:5px solid #dc2626;
  color:#0f172a;font-size:15px;line-height:1.45;box-shadow:0 4px 14px rgba(2,18,56,.06)}
.etm-acct-banner strong{color:#dc2626}
.etm-acct-banner .etm-ico{color:#dc2626;flex:none;width:20px;height:20px;margin-top:1px}

/* "5x more views" completion CTA under the progress bar */
.etm-complete-cta{display:flex;align-items:center;gap:8px;margin:9px 2px 0;font-size:13.5px;
  color:#0a6d5c;font-weight:600;line-height:1.4}
.etm-complete-cta .etm-ico{flex:none;width:16px;height:16px}
.etm-complete-cta strong{color:#0a6d5c}

/* Accordion sections */
.etm-profile-form .etm-acc,.etm-acc#etm-consultancy{margin:0 0 16px;border:1px solid #e2e8f0;
  border-radius:14px;overflow:hidden;background:#fff;box-shadow:0 6px 18px rgba(2,18,56,.06)}
.etm-acc-head{display:flex;align-items:center;gap:12px;width:100%;border:0;cursor:pointer;
  text-align:left;padding:15px 18px;font:inherit;color:#fff;
  background:linear-gradient(118deg,#062F66 0%,#062F66 100%)}
.etm-acc-head:hover{filter:brightness(1.1)}
.etm-acc-head:focus-visible{outline:3px solid #00B84A;outline-offset:-3px}
.etm-acc-title{font-size:16px;font-weight:800;letter-spacing:.01em;flex:1 1 auto;margin:0}
.etm-acc-flag{flex:none;font-size:11.5px;font-weight:800;padding:4px 10px;border-radius:999px;
  text-transform:uppercase;letter-spacing:.03em;display:inline-flex;align-items:center;gap:5px;white-space:nowrap}
.etm-acc-flag .etm-ico{width:13px;height:13px}
.etm-acc-missing{background:#dc2626;color:#fff}
.etm-acc-done{background:rgba(0,184,74,.22);color:#9ff5e0}
.etm-acc-opt{background:rgba(255,255,255,.16);color:#dbe5f1}
.etm-acc-chev{flex:none;width:10px;height:10px;border-right:2.5px solid #fff;border-bottom:2.5px solid #fff;
  transform:rotate(45deg);transition:transform .2s;margin:0 2px}
.etm-acc.is-collapsed .etm-acc-chev{transform:rotate(-45deg)}
.etm-acc-body{padding:20px 18px}
.etm-acc.is-collapsed .etm-acc-body{display:none}

/* Gap between checkbox/radio and its label (lists were too cramped) */
.etm-profile-form .etm-check,.etm-profile-form .etm-radio,
.etm-profile-form .etm-logi-head,.etm-profile-form .etm-logi-sub{
  display:flex;align-items:flex-start;gap:11px;line-height:1.4}
.etm-profile-form .etm-check>input,.etm-profile-form .etm-radio>input,
.etm-profile-form .etm-logi-head>input,.etm-profile-form .etm-logi-sub>input{
  margin:2px 0 0;flex:none;width:17px;height:17px}

/* View public profile — make it obvious */
.etm-btn-view{background:#fff;color:#0a6d5c;border:2px solid #0a6d5c;font-weight:800}
.etm-btn-view:hover,.etm-btn-view:focus{background:#0a6d5c;color:#fff}
.etm-btn-view .etm-ico{width:17px;height:17px}

/* Add certificate / repeater add — give it colour so it's findable */
.etm-profile-form .etm-repeater-add{background:#eafaf6;color:#0a6d5c;border:1.5px dashed #0a6d5c;
  font-weight:800;margin-top:10px}
.etm-profile-form .etm-repeater-add:hover{background:#0a6d5c;color:#fff;border-style:solid}

/* "Can't see your category? Request a new one" — stand out as a pill */
.etm-profile-form .etm-reqcat-toggle{display:inline-block;margin-top:10px;padding:7px 14px;
  border-radius:999px;background:#fff7ed;border:1.5px solid #fdba74;color:#c2410c;
  font-weight:700;font-size:13.5px;text-decoration:none}
.etm-profile-form .etm-reqcat-toggle:hover{background:#fed7aa}

/* Mobile */
@media(max-width:600px){
  .etm-acc-head{padding:13px 14px;gap:9px}
  .etm-acc-title{font-size:15px}
  .etm-acc-flag{font-size:10.5px;padding:3px 8px}
  .etm-acc-body{padding:16px 13px}
  .etm-acct-banner{font-size:14px;padding:11px 14px}
  .etm-complete-cta{font-size:13px}
  .etm-dashboard .etm-profile-form,
  .etm-dashboard .etm-profile-form .etm-acc,
  .etm-dashboard .etm-profile-form .etm-acc-body,
  .etm-dashboard .etm-profile-form .etm-form-grid,
  .etm-dashboard .etm-profile-form .etm-form-cell,
  .etm-dashboard .etm-profile-form .etm-field,
  .etm-dashboard .etm-profile-form .etm-rte,
  .etm-dashboard .etm-profile-form .etm-rte-toolbar,
  .etm-dashboard .etm-profile-form .etm-rte-area,
  .etm-dashboard .etm-profile-form .etm-rte-help{min-width:0;max-width:100%}
  .etm-dashboard .etm-profile-form .etm-form-grid{grid-template-columns:minmax(0,1fr) !important;gap:0}
  .etm-dashboard .etm-profile-form .etm-form-cell{grid-column:1 / -1;width:100%}
  .etm-dashboard .etm-profile-form .etm-field input[type=text],
  .etm-dashboard .etm-profile-form .etm-field input[type=email],
  .etm-dashboard .etm-profile-form .etm-field input[type=tel],
  .etm-dashboard .etm-profile-form .etm-field input[type=url],
  .etm-dashboard .etm-profile-form .etm-field input[type=number],
  .etm-dashboard .etm-profile-form .etm-field input[type=password],
  .etm-dashboard .etm-profile-form .etm-field input[type=search],
  .etm-dashboard .etm-profile-form .etm-field textarea,
  .etm-dashboard .etm-profile-form .etm-field select,
  .etm-dashboard .etm-profile-form .etm-avatar-input{width:100%;max-width:100%;min-width:0}
  .etm-dashboard .etm-profile-form .etm-avatar-field{flex-wrap:wrap}
  .etm-dashboard .etm-profile-form .etm-checkboxes{grid-template-columns:minmax(0,1fr)}
}

/* ===================================================================
   Request form — clearer, calmer choice cards (2026-06-18).
   Subtle polish only: stronger separation from the white page, a more
   legible description, and an obvious selected/hover state. No markup
   or copy changes. Overrides the base .etm-choice-* rules above.
   =================================================================== */
.etm-choice-grid{gap:16px;}
.etm-choice-card{
  border:1.5px solid #dbe2ee;
  background:#fbfcff;
  padding:26px 20px;
  box-shadow:0 1px 2px rgba(2,18,56,.05);
}
.etm-choice-card:hover{
  border-color:#00b89a;
  background:#fff;
  box-shadow:0 10px 26px rgba(0,184,74,.18);
  transform:translateY(-2px);
}
.etm-choice-ico{
  width:54px;height:54px;
  background:linear-gradient(135deg,#e7fbf5 0%,#eef3ff 100%);
}
.etm-choice-ico .etm-ico{color:#0a8d78;}
.etm-choice-title{font-size:16px;color:#062F66;margin-bottom:7px;}
.etm-choice-desc{font-size:14px;color:#4b5666;line-height:1.5;}

/* Selected state — unmistakable but tasteful */
.etm-choice-card:has(input:checked){
  border-color:#00b89a;background:#f1fdfa;
  box-shadow:0 8px 22px rgba(0,184,74,.2);
}
.etm-choice-card:has(input:checked) .etm-choice-ico{background:#00B84A;}
.etm-choice-card:has(input:checked) .etm-choice-ico .etm-ico{color:#04221b;}
.etm-choice-card:has(input:focus-visible){outline:3px solid #00B84A;outline-offset:2px;}

/* The step sub-instruction was too faint */
.etm-request-card .etm-ms-panel .etm-ms-sub{color:#475569;font-size:15px;}

@media(max-width:600px){
  .etm-choice-card{padding:20px 16px;}
  .etm-choice-desc{font-size:13.5px;}
}

/* ===================================================================
   Request form choice cards v2 (2026-06-18) — SOLID navy boxes, white
   text, green icons, larger title + description. Selected = green box.
   Overrides the earlier subtle pass (later rules win).
   =================================================================== */
.etm-choice-grid{gap:16px;}
.etm-choice-card{
  background:#062F66;
  border:2px solid #062F66;
  color:#fff;
  padding:26px 20px;
  box-shadow:0 8px 20px rgba(2,18,56,.16);
}
.etm-choice-card:hover{
  background:#14306a;
  border-color:#00B84A;
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(0,184,74,.28);
}
.etm-choice-ico{
  width:56px;height:56px;
  background:rgba(0,184,74,.16);
}
.etm-choice-ico .etm-ico{color:#00e6c4;width:27px;height:27px;}
.etm-choice-title{font-size:18px;color:#fff;line-height:1.25;margin-bottom:8px;}
.etm-choice-desc{font-size:14.5px;color:#c9d4e6;line-height:1.55;}

/* Selected = solid green box, dark text */
.etm-choice-card:has(input:checked){
  background:#00B84A;border-color:#00B84A;
  box-shadow:0 12px 28px rgba(0,184,74,.42);
}
.etm-choice-card:has(input:checked) .etm-choice-title{color:#04221b;}
.etm-choice-card:has(input:checked) .etm-choice-desc{color:#06372d;}
.etm-choice-card:has(input:checked) .etm-choice-ico{background:rgba(4,34,27,.14);}
.etm-choice-card:has(input:checked) .etm-choice-ico .etm-ico{color:#04221b;}
.etm-choice-card:has(input:checked)::after{background:#04221b;color:#00e6c4;}
.etm-choice-card:has(input:focus-visible){outline:3px solid #00e6c4;outline-offset:2px;}

@media(max-width:600px){
  .etm-choice-card{padding:20px 16px;}
  .etm-choice-title{font-size:16.5px;}
  .etm-choice-desc{font-size:14px;}
}

/* Request choice cards — drop shadows (2026-06-18) */
.etm-choice-card,.etm-choice-card:hover,.etm-choice-card:has(input:checked){box-shadow:none;}

/* ===================================================================
   Request form UX pass (2026-07-08). Append-only.
   1. "Step X of 5" counter + step name above the progress bar; the old
      hidden step-dot strip rendered as a stray line (its display:flex
      beat the hidden attribute), so it is gone from the template and
      guarded here.
   2. Inputs: 16px text (no iOS focus zoom), 48px touch targets, solid
      white boxes with a firm border, clear teal focus ring.
   3. Inline red step errors + highlighted invalid fields.
   4. Phones: choice cards become compact horizontal rows.
   =================================================================== */
.etm-ms-progress[hidden]{display:none !important;}
.etm-ms-head{margin:0 0 24px;}
.etm-request-card .etm-ms-head{padding:22px 32px 0;margin:0 0 8px;}
.etm-ms-count{display:flex;align-items:baseline;justify-content:space-between;gap:10px;margin:0 0 9px;}
.etm-ms-count-num{font-size:12.5px;font-weight:800;color:#062F66;letter-spacing:.05em;text-transform:uppercase;}
.etm-ms-count-name{font-size:13.5px;font-weight:600;color:#64748b;}
.etm-ms-head .etm-ms-bar{margin:0;height:6px;}

/* Inputs: bigger, clearer, no iOS zoom */
.etm-ms-form .etm-field > label{font-size:14px;font-weight:700;color:#0f172a;margin-bottom:7px;}
.etm-ms-form .etm-field{margin-bottom:18px;}
.etm-ms-form input[type=text],.etm-ms-form input[type=email],.etm-ms-form input[type=tel],.etm-ms-form input[type=number],.etm-ms-form textarea,.etm-ms-form select{
  font-size:16px;padding:12px 14px;min-height:48px;border:1.5px solid #9aa7bd;border-radius:10px;
  background:#fff;box-shadow:none;color:#0f172a;line-height:1.4;}
.etm-ms-form select{height:48px;}
.etm-ms-form textarea{min-height:130px;}
.etm-ms-form input::placeholder,.etm-ms-form textarea::placeholder{color:#94a3b8;opacity:1;}
.etm-ms-form input:focus,.etm-ms-form textarea:focus,.etm-ms-form select:focus{
  border-color:#00A640;box-shadow:0 0 0 3px rgba(0,184,74,.18);background:#fff;outline:none;}

/* Inline step errors + invalid fields */
.etm-ms-form .is-invalid{border-color:#dc2626 !important;background:#fef2f2 !important;}
.etm-ms-err{display:block;background:#fef2f2;border:1px solid #fecaca;color:#b91c1c;border-radius:9px;
  padding:11px 14px;font-size:14px;font-weight:600;line-height:1.45;margin:16px 0 0;}
.etm-ms-err[hidden]{display:none;}

/* Comfortable button targets */
.etm-ms-actions .etm-btn{min-height:48px;}

/* Phones: horizontal choice cards (less scrolling), tighter step heading */
@media(max-width:680px){
  .etm-choice-grid{gap:10px;}
  .etm-choice-card{display:grid;grid-template-columns:44px 1fr;column-gap:13px;row-gap:0;
    align-items:center;text-align:left;padding:13px 15px 13px 13px;}
  .etm-choice-ico{grid-row:1/3;width:44px;height:44px;margin:0;}
  .etm-choice-ico .etm-ico{width:22px;height:22px;}
  .etm-choice-title{font-size:15.5px;margin-bottom:2px;}
  .etm-choice-desc{font-size:12.5px;line-height:1.4;}
  .etm-choice-card:has(input:checked){padding-right:38px;}
  .etm-choice-card:has(input:checked)::after{top:50%;transform:translateY(-50%);right:11px;}
  .etm-request-card .etm-ms-panel h2{font-size:19px;}
  .etm-request-card .etm-ms-head{padding:18px 18px 0;}
}
