/* ===================================================================
   Danny Khreet — Personal Website
   Executive / engineering-leader theme: deep navy + warm gold
   Vanilla CSS, fully responsive, no frameworks
   =================================================================== */

:root {
  --navy-900: #08182e;
  --navy-800: #0a2342;
  --navy-700: #113155;
  --navy-600: #1b4170;
  --gold: #c8a45c;
  --gold-soft: #e0c890;
  --ink: #16202b;
  --slate: #4c5a69;
  --line: #e9edf3;
  --line-soft: rgba(16, 42, 77, 0.08);
  --bg: #ffffff;
  --bg-alt: #eef3f9;
  --bg-soft: #eef2f7;
  --white: #ffffff;

  --maxw: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(10, 35, 66, .04), 0 4px 12px rgba(10, 35, 66, .05);
  --shadow-md: 0 6px 16px rgba(10, 35, 66, .06), 0 20px 48px rgba(10, 35, 66, .09);
  --shadow-lg: 0 28px 70px rgba(8, 24, 46, .22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; color: var(--navy-800); font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute; left: 0; top: 0; z-index: 1000;
  background: var(--navy-800); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
  transform: translateY(-150%); transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; box-shadow: 0 0 0 5px rgba(10, 35, 66, .55); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn-primary { background: var(--gold); color: var(--navy-900); box-shadow: 0 6px 18px rgba(200,164,92,.26); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200,164,92,.32); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }

/* ===================================================================
   Header / Nav
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 800; }
.brand-mark {
  display: grid; place-items: center; width: 40px; height: 40px;
  background: var(--navy-800); color: var(--gold); border-radius: 11px;
  font-size: 15px; letter-spacing: .5px; box-shadow: var(--shadow-sm);
}
.brand-name { color: var(--navy-800); font-size: 18px; }

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu a { font-family: var(--font-head); font-weight: 500; font-size: 15.5px; color: var(--slate); position: relative; }
.nav-menu a:not(.nav-cta):not(.lang-switch)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-menu a:not(.nav-cta):not(.lang-switch):hover { color: var(--navy-800); }
.nav-menu a:not(.nav-cta):not(.lang-switch):hover::after { width: 100%; }
.nav-cta {
  background: var(--navy-800); color: #fff !important; padding: 9px 20px; border-radius: 999px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav-cta:hover { background: var(--navy-600); transform: translateY(-2px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--navy-800); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===================================================================
   Hero
   =================================================================== */
.hero {
  position: relative; overflow: hidden; color: #eaf0f7;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(200,164,92,.20), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(27,65,112,.55), transparent 55%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  padding: clamp(56px, 9vw, 110px) 0 clamp(72px, 10vw, 120px);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.25fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: center;
}
.status-pill {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px;
  padding: 7px 16px 7px 13px; border-radius: 999px;
  background: rgba(200, 164, 92, .12); border: 1px solid rgba(200, 164, 92, .40);
  color: var(--gold-soft); font-family: var(--font-head); font-weight: 600; font-size: 13px;
}
.status-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--gold); flex: none;
  box-shadow: 0 0 0 0 rgba(200, 164, 92, .6); animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 164, 92, .5); }
  70% { box-shadow: 0 0 0 5px rgba(200, 164, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 164, 92, 0); }
}
.eyebrow {
  font-family: var(--font-head); font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  font-size: 13px; color: var(--gold-soft); margin-bottom: 18px;
}
.hero h1 {
  color: #fff; font-size: clamp(40px, 7vw, 64px); font-weight: 800; letter-spacing: -.02em; line-height: 1.02;
  margin-bottom: 14px;
}
.hero-statement {
  font-family: var(--font-head); font-weight: 700; color: var(--gold-soft);
  font-size: clamp(20px, 3vw, 27px); line-height: 1.28; letter-spacing: -.01em;
  max-width: 24ch; margin-bottom: 22px;
}
.hero-lead { font-size: clamp(16px, 2.2vw, 18.5px); color: #aebccd; max-width: 46ch; margin-bottom: 18px; }
.hero-lead strong { color: #fff; }
.hero-audience {
  font-size: 16px; color: #c5d2e0; max-width: 50ch; margin: 0 0 30px;
  border-left: 3px solid var(--gold); padding-left: 14px;
}
.hero-audience strong { color: #fff; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; color: #aebccd; font-size: 15px; }
.hero-meta li { display: flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 17px; height: 17px; flex: none; color: var(--gold); }

.hero-portrait { position: relative; justify-self: center; }
.portrait-frame {
  position: relative; width: clamp(240px, 32vw, 340px); aspect-ratio: 1; border-radius: 24px;
  padding: 7px; background: linear-gradient(150deg, var(--gold), rgba(200,164,92,.15) 60%, transparent);
  box-shadow: var(--shadow-lg);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.portrait-badge {
  position: absolute; bottom: -18px; left: -18px; background: #fff; color: var(--navy-800);
  padding: 12px 18px; border-radius: 14px; box-shadow: var(--shadow-md); display: grid; line-height: 1.25;
}
.portrait-badge strong { font-family: var(--font-head); color: var(--navy-700); font-size: 18px; }
.portrait-badge span { font-size: 12px; color: var(--slate); }

/* ===================================================================
   Stats
   =================================================================== */
.stats { background: var(--navy-900); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; padding-block: 44px 0; text-align: center;
}
.stat { padding: 10px; border-right: 1px solid rgba(255,255,255,.08); }
.stat:last-child { border-right: 0; }
.stat-num { display: block; font-family: var(--font-head); font-weight: 800; color: var(--gold); font-size: clamp(30px, 5vw, 46px); line-height: 1; }
.stat-label { display: block; color: #9fb0c2; font-size: 14px; margin-top: 8px; }
.stats-note { text-align: center; color: #6f8197; font-size: 13px; font-style: italic; margin: 18px 0 44px; }

/* ===================================================================
   Sections
   =================================================================== */
.section { padding: clamp(72px, 10vw, 124px) 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: 54px; }
.section-kicker {
  font-family: var(--font-head); font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  font-size: 13px; color: var(--gold); display: inline-block; margin-bottom: 14px;
}
.section-kicker::before { content: ""; display: inline-block; width: 26px; height: 2px; background: var(--gold); vertical-align: middle; margin-right: 10px; }
.section-head h2 { font-size: clamp(29px, 4.5vw, 43px); letter-spacing: -.02em; line-height: 1.12; }
.section-sub { color: var(--slate); margin-top: 16px; font-size: 18px; line-height: 1.6; }

/* ---------- Cards grid (services / ideas) ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.card-icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  background: var(--bg-soft); border-radius: 14px; margin-bottom: 18px; color: var(--navy-600);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 15.5px; }

/* ---------- Featured service card ---------- */
.card--featured {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  border: 1px solid rgba(200, 164, 92, .30); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px); margin-bottom: 22px; box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 3vw, 34px); align-items: start;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card--featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(200,164,92,.5); }
.feat-icon {
  width: 64px; height: 64px; flex: none; display: grid; place-items: center; color: var(--gold);
  background: rgba(200, 164, 92, .13); border: 1px solid rgba(200, 164, 92, .30); border-radius: 16px;
  margin-top: 3px;
}
.feat-icon svg { width: 30px; height: 30px; }
.feat-badge {
  display: inline-block; background: var(--gold); color: var(--navy-900);
  font-family: var(--font-head); font-weight: 700; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 13px;
}
.card--featured h3 { color: #fff; font-size: clamp(22px, 2.6vw, 27px); margin-bottom: 10px; }
.card--featured p { color: #c5d2e0; font-size: 16.5px; max-width: 80ch; }

/* ---------- How it works (process steps) ---------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step {
  position: relative; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 24px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-no {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-800); color: var(--gold); font-family: var(--font-head); font-weight: 800; font-size: 17px;
  margin-bottom: 16px;
}
.process-step h3 { font-size: 17.5px; margin-bottom: 8px; }
.process-step p { color: var(--slate); font-size: 14.5px; }

/* ---------- Contact ---------- */
.section-contact { background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color: #e8eef5; text-align: center; }
.section-contact .section-head { margin-inline: auto; text-align: center; }
.section-contact h2 { color: #fff; }
.section-contact .section-sub { color: #b6c4d4; max-width: 58ch; margin-inline: auto; }
.contact-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 620px; margin: 40px auto 0; }
.contact-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius);
  padding: 28px 22px; display: grid; gap: 6px; justify-items: center; transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.10); border-color: var(--gold); }
.contact-ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--gold); color: var(--navy-900); margin-bottom: 8px; }
.contact-ic svg { width: 25px; height: 25px; }
.contact-k { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 15px; }
.contact-v { color: #b6c4d4; font-size: 15px; word-break: break-word; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #93a4b7; padding: 30px 0; }
.footer-wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-head); font-weight: 700; }
.footer-copy { font-size: 13.5px; }
.to-top { font-family: var(--font-head); font-weight: 600; color: var(--gold); }
.to-top:hover { color: #fff; }

/* ===================================================================
   Credibility strip
   =================================================================== */
.cred-strip { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding: 30px 0; }
.cred-label { text-align: center; font-family: var(--font-head); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: 12.5px; color: var(--slate); margin-bottom: 18px; }
.cred-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(22px, 5vw, 56px); }
.cred-logos li { font-family: var(--font-head); font-weight: 700; font-size: clamp(16px, 2.4vw, 22px); color: var(--navy-700); opacity: .72; transition: opacity .25s var(--ease); }
.cred-logos li:hover { opacity: 1; }

/* ===================================================================
   Narrow container + prose (About)
   =================================================================== */
.narrow { max-width: 800px; }
.section-head.reveal + .prose { margin-top: 4px; }
.prose p { color: var(--slate); font-size: 18px; margin-bottom: 20px; }
.prose .lead-para { font-size: clamp(20px, 2.6vw, 24px); line-height: 1.5; color: var(--ink); font-family: var(--font-head); font-weight: 500; margin-bottom: 24px; }
.prose .currently { margin-top: 28px; padding: 16px 22px; border-left: 3px solid var(--gold); background: var(--bg-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 16px; }
.prose .currently strong { color: var(--navy-800); }

/* ===================================================================
   Principles (How I work)
   =================================================================== */
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.principle {
  position: relative; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 36px 32px 32px; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.principle:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.principle-no {
  font-family: var(--font-head); font-weight: 800; font-size: 64px; line-height: 1;
  color: var(--gold); opacity: .18; position: absolute; top: 14px; right: 24px;
}
.principle h3 { font-size: 21px; margin-bottom: 10px; position: relative; }
.principle p { color: var(--slate); font-size: 16px; position: relative; }

.focus { margin-top: 40px; text-align: center; }
.focus-label { font-family: var(--font-head); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: 12.5px; color: var(--slate); display: block; margin-bottom: 16px; }
.focus-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.focus-tags li { background: var(--white); border: 1px solid var(--line); color: var(--navy-700); font-weight: 600; font-size: 14.5px; padding: 9px 18px; border-radius: 999px; box-shadow: var(--shadow-sm); }

/* ===================================================================
   Case studies (Selected work)
   =================================================================== */
.cases { display: grid; gap: 22px; }
.case {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.case:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.case-head { padding: 28px 30px 22px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-alt), transparent); }
.case-org { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }
.case-head h3 { font-size: clamp(21px, 3vw, 27px); margin-top: 6px; letter-spacing: -.01em; }
.case-body { display: grid; grid-template-columns: repeat(3, 1fr); }
.case-part { padding: 26px 30px; border-right: 1px solid var(--line); }
.case-part:last-child { border-right: 0; background: rgba(200, 164, 92, .05); }
.case-label { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--navy-600); margin-bottom: 10px; }
.case-part:last-child .case-label { color: var(--gold); }
.case-part p { color: var(--slate); font-size: 15.5px; }

/* ===================================================================
   Perspectives (Ideas)
   =================================================================== */
.persp {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column; gap: 8px;
}
.persp:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.persp-tag { align-self: flex-start; background: var(--navy-800); color: var(--gold-soft); font-family: var(--font-head); font-weight: 600; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.persp h3 { font-size: 20px; margin-top: 6px; }
.persp p { color: var(--slate); font-size: 15.5px; }

/* ===================================================================
   FAQ (accordion)
   =================================================================== */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .3s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 24px; gap: 16px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--navy-800);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none; font-family: var(--font-body); font-weight: 400; font-size: 22px;
  line-height: 1; color: var(--navy-700); width: 28px; height: 28px;
  display: grid; place-items: center; background: var(--bg-soft); border-radius: 50%;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--navy-600); }
.faq-item p { padding: 0 24px 22px; margin: 0; color: var(--slate); font-size: 15.5px; }

/* ===================================================================
   Credentials bar (subtle trust strip)
   =================================================================== */
.creds-bar { background: var(--navy-900); padding: 26px 0; }
.creds-bar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 26px; }
.creds-title { font-family: var(--font-head); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: 12px; color: var(--gold); }
.creds-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 22px; }
.creds-list li { position: relative; color: #c2cfdd; font-size: 14.5px; font-weight: 500; }
.creds-list li:not(:last-child)::after { content: "·"; position: absolute; right: -13px; color: rgba(255,255,255,.3); }

/* ===================================================================
   Scroll reveal
   =================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 2; }
  .hero-portrait { order: 1; margin-bottom: 12px; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-audience { border-left: 0; padding-left: 0; margin-inline: auto; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .case-body { grid-template-columns: 1fr; }
  .case-part { border-right: 0; border-bottom: 1px solid var(--line); }
  .case-part:last-child { border-bottom: 0; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
  }
  .nav-menu.open { max-height: 420px; }
  .nav-menu li { border-top: 1px solid var(--line); }
  .nav-menu a { display: block; padding: 16px 24px; }
  .nav-menu a:not(.nav-cta)::after { display: none; }
  .nav-cta { border-radius: 0; text-align: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 8px; }
  .stat:nth-child(2) { border-right: 0; }
  .principles { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .container { padding-inline: 18px; }
  .cards-grid, .cards-2, .contact-actions, .process-steps { grid-template-columns: 1fr; }
  .card--featured { grid-template-columns: 1fr; gap: 18px; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .portrait-badge { left: 50%; transform: translateX(-50%); }
}

/* ===================================================================
   Language switcher
   =================================================================== */
.lang-switch {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--line); padding: 6px 13px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--navy-700) !important;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.lang-switch svg { width: 15px; height: 15px; flex: none; }
.lang-switch:hover { border-color: var(--gold); color: var(--navy-800) !important; }
/* Header-level language toggle: only shown on mobile, beside the menu button */
.lang-switch--mobile { display: none; }
.lang-switch--mobile .ls-short { display: none; }
@media (max-width: 760px) {
  /* lay the always-visible language toggle next to the hamburger */
  .main-nav { display: flex; align-items: center; gap: 10px; }
  .lang-switch--mobile { display: inline-flex; }
  .brand-name { font-size: 16.5px; }
  /* avoid a duplicate language link inside the collapsible menu */
  .nav-menu .lang-item { display: none; }
}
/* on very narrow screens, collapse the label to a short code so nothing clips */
@media (max-width: 400px) {
  .lang-switch--mobile .ls-full { display: none; }
  .lang-switch--mobile .ls-short { display: inline; }
}

/* ===================================================================
   RTL / Arabic
   =================================================================== */
[dir="rtl"] body { font-family: "Tajawal", "Segoe UI", Tahoma, sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4,
[dir="rtl"] .brand-name, [dir="rtl"] .footer-brand,
[dir="rtl"] .eyebrow, [dir="rtl"] .section-kicker,
[dir="rtl"] .hero-statement, [dir="rtl"] .lead-para,
[dir="rtl"] .btn, [dir="rtl"] .nav-menu a, [dir="rtl"] .principle-no {
  font-family: "Cairo", "Tajawal", sans-serif;
}
/* Arabic typography: kill negative tracking (it fuses cursive letters) + roomier
   line-height (Arabic script needs more vertical space than Latin). */
[dir="rtl"] body { line-height: 1.85; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4,
[dir="rtl"] .hero h1, [dir="rtl"] .hero-statement, [dir="rtl"] .section-head h2,
[dir="rtl"] .lead-para, [dir="rtl"] .brand-name { letter-spacing: normal; }
[dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 { line-height: 1.4; }
[dir="rtl"] .hero h1 { line-height: 1.22; }
[dir="rtl"] .section-head h2 { line-height: 1.36; }
[dir="rtl"] .hero-statement { line-height: 1.62; }
[dir="rtl"] .hero-lead, [dir="rtl"] .hero-audience,
[dir="rtl"] .section-sub, [dir="rtl"] .lead-para { line-height: 1.8; }
[dir="rtl"] .prose p, [dir="rtl"] .card p, [dir="rtl"] .card--featured p,
[dir="rtl"] .case-part p, [dir="rtl"] .persp p, [dir="rtl"] .principle p,
[dir="rtl"] .process-step p, [dir="rtl"] .timeline-content ul li,
[dir="rtl"] .creds-list li, [dir="rtl"] .about-card dd { line-height: 1.95; }
/* Arabic doesn't use letter-spacing / uppercase — keep ligatures intact */
[dir="rtl"] .eyebrow, [dir="rtl"] .section-kicker, [dir="rtl"] .cred-label,
[dir="rtl"] .focus-label, [dir="rtl"] .case-label, [dir="rtl"] .creds-title,
[dir="rtl"] .persp-tag, [dir="rtl"] .status-pill, [dir="rtl"] .feat-badge {
  letter-spacing: normal; text-transform: none;
}
/* keep Latin tokens reading left-to-right */
[dir="rtl"] .stat-num, [dir="rtl"] .contact-v, [dir="rtl"] .case-org,
[dir="rtl"] .cred-logos { direction: ltr; }
[dir="rtl"] .cred-logos { unicode-bidi: isolate; }
/* directional flips */
[dir="rtl"] .section-kicker::before { margin-right: 0; margin-left: 10px; }
[dir="rtl"] .hero-audience { border-left: 0; border-right: 3px solid var(--gold); padding-left: 0; padding-right: 14px; }
[dir="rtl"] .prose .currently { border-left: 0; border-right: 3px solid var(--gold); border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
[dir="rtl"] .principle-no { right: auto; left: 22px; }
[dir="rtl"] .creds-list li:not(:last-child)::after { right: auto; left: -13px; }
[dir="rtl"] .portrait-badge { left: auto; right: -18px; }
[dir="rtl"] .case-org { display: inline-block; }
[dir="rtl"] .case-part { border-right: 0; border-left: 1px solid var(--line); }
[dir="rtl"] .case-part:last-child { border-left: 0; }
[dir="rtl"] .stat { border-right: 0; border-left: 1px solid rgba(255,255,255,.08); }
[dir="rtl"] .stat:last-child { border-left: 0; }
[dir="rtl"] .nav-menu a:not(.nav-cta):not(.lang-switch)::after { left: auto; right: 0; }
[dir="rtl"] .skip-link { border-radius: 0 0 8px 0; }
@media (max-width: 960px) {
  [dir="rtl"] .portrait-badge { left: auto; right: 50%; transform: translateX(50%); }
}
@media (max-width: 760px) {
  [dir="rtl"] .case-part { border-left: 0; }
}
@media (max-width: 540px) {
  [dir="rtl"] .portrait-badge { right: 50%; transform: translateX(50%); }
}

/* ===================================================================
   Training & Exams hub  (مركز التدريب والامتحانات)
   =================================================================== */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hub-card {
  aspect-ratio: 1 / 0.94;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px;
  padding: 28px 22px; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); color: var(--ink);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.hub-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.hub-ic {
  width: 66px; height: 66px; flex: none; display: grid; place-items: center; border-radius: 18px;
  background: var(--bg-soft); color: var(--navy-700);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.hub-card:hover .hub-ic { background: var(--navy-800); color: var(--gold); }
.hub-ic svg { width: 32px; height: 32px; }
.hub-card h3 { font-size: 18.5px; line-height: 1.35; }
.hub-tag { font-family: var(--font-head); font-weight: 600; font-size: 12.5px; color: var(--gold); }

/* ---- sub-page (category) ---- */
.back-link {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px;
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--navy-600);
}
.back-link:hover { color: var(--gold); }
.back-link svg { width: 17px; height: 17px; }
.subpage-hero { display: flex; align-items: center; gap: 22px; margin-bottom: 8px; }
.subpage-hero .hub-ic { width: 72px; height: 72px; }
.subpage-hero .hub-ic svg { width: 36px; height: 36px; }
.subpage-hero h1 { font-size: clamp(26px, 4vw, 38px); color: var(--navy-800); letter-spacing: -.01em; }
.empty-state {
  border: 2px dashed var(--line); border-radius: var(--radius); padding: 46px 24px; text-align: center;
  color: var(--slate); background: var(--bg-alt);
}
.empty-state .es-ic {
  width: 56px; height: 56px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 50%;
  background: var(--bg-soft); color: var(--gold);
}
.empty-state .es-ic svg { width: 26px; height: 26px; }
.empty-state h3 { color: var(--navy-800); font-size: 18px; margin-bottom: 6px; }
.empty-state p { font-size: 14.5px; max-width: 48ch; margin: 0 auto; }
/* exam/training item template (fill later) */
.exam-list { display: grid; gap: 12px; }
.exam-item {
  display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); padding: 16px 18px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.exam-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.exam-item .exam-ic { flex: none; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: var(--bg-soft); color: var(--navy-700); }
.exam-item h4 { font-size: 16px; color: var(--navy-800); margin-bottom: 2px; }
.exam-item p { font-size: 13.5px; color: var(--slate); margin: 0; }

/* Attempt-count badge injected by DKStats.renderExamCounts() */
.dks-tries-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-right: auto; flex: none;
  background: linear-gradient(135deg, rgba(200,164,92,.14), rgba(200,164,92,.06));
  border: 1px solid rgba(200,164,92,.35);
  color: var(--gold); border-radius: 999px;
  padding: 5px 13px 5px 10px;
  font-family: "Cairo", "Tajawal", sans-serif;
  font-size: 13px; font-weight: 700;
  white-space: nowrap;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.exam-item:hover .dks-tries-badge {
  background: linear-gradient(135deg, rgba(200,164,92,.22), rgba(200,164,92,.10));
  border-color: rgba(200,164,92,.6);
}
.dks-tries-badge svg { width: 14px; height: 14px; flex: none; opacity: .85; }
.dks-tries-num { font-variant-numeric: tabular-nums; }
.dks-tries-lbl { font-size: 11.5px; font-weight: 600; opacity: .75; margin-right: 2px; }
[dir="rtl"] .dks-tries-badge { margin-right: 0; margin-left: auto; padding: 5px 10px 5px 13px; }
[dir="rtl"] .dks-tries-lbl { margin-right: 0; margin-left: 2px; }

@media (max-width: 760px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .subpage-hero { gap: 16px; }
}
@media (max-width: 540px) {
  .hub-card { aspect-ratio: auto; padding: 24px 18px; }
}

/* ===================================================================
   DK Training Statistics Widget  (dks-*)
   =================================================================== */
.dks-widget {
  background: linear-gradient(145deg, var(--navy-800) 0%, #0d2a4a 100%);
  border: 1px solid rgba(200, 164, 92, .20);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.05);
  color: #e2eaf3;
  position: relative;
  overflow: hidden;
}
.dks-widget::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(200,164,92,.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.dks-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 26px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dks-header-ic {
  width: 50px; height: 50px; flex: none;
  display: grid; place-items: center;
  background: rgba(200, 164, 92, .15);
  border: 1px solid rgba(200, 164, 92, .30);
  border-radius: 14px; color: var(--gold);
}
.dks-header-ic svg { width: 24px; height: 24px; }
.dks-title {
  font-family: "Cairo", "Tajawal", sans-serif;
  font-size: 20px; font-weight: 800;
  color: #fff; margin-bottom: 4px;
}
.dks-subtitle { font-size: 13px; color: #7e96ae; margin: 0; }

/* Cards row */
.dks-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 24px;
}
.dks-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px; padding: 16px 14px; text-align: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.dks-card:hover { transform: translateY(-2px); border-color: rgba(200,164,92,.35); }
.dks-card-primary {
  background: linear-gradient(135deg, rgba(200,164,92,.18), rgba(200,164,92,.06));
  border-color: rgba(200, 164, 92, .35);
}
.dks-num {
  display: block;
  font-family: "Cairo", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(28px, 4vw, 38px); font-weight: 800;
  color: var(--gold); line-height: 1;
}
.dks-card-primary .dks-num { color: #f0d080; }
.dks-lbl { display: block; font-size: 12.5px; color: #7e96ae; margin-top: 7px; }

/* Sections */
.dks-section { margin-bottom: 20px; }
.dks-section-title {
  font-family: "Cairo", "Tajawal", sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.dks-section-title::before {
  content: ""; display: inline-block;
  width: 20px; height: 2px; background: var(--gold); border-radius: 2px;
}

/* Bar rows (mode breakdown) */
.dks-bar-row {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 10px; margin-bottom: 10px;
}
.dks-bar-label { font-size: 13.5px; color: #b8cad8; }
.dks-bar-track {
  width: 90px; height: 7px; background: rgba(255,255,255,.10);
  border-radius: 999px; overflow: hidden;
}
.dks-bar-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #e0c56a);
  transition: width .8s var(--ease);
}
.dks-bar-pct { font-size: 13px; color: var(--gold-soft); font-weight: 600; min-width: 28px; text-align: left; }

/* Exam list */
.dks-exam-list { display: grid; gap: 8px; }
.dks-exam-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px; padding: 10px 14px; gap: 12px;
}
.dks-exam-title { font-size: 13px; color: #b8cad8; flex: 1; line-height: 1.4; }
.dks-exam-cnt {
  font-size: 12.5px; font-weight: 700;
  color: var(--gold); background: rgba(200,164,92,.12);
  padding: 4px 10px; border-radius: 999px; white-space: nowrap; flex: none;
}

/* Notes & empty states */
.dks-note {
  font-size: 12px; color: #5a7490; margin-top: 16px;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,.07);
  text-align: center;
}
.dks-empty { font-size: 13.5px; color: #5a7490; text-align: center; padding: 8px 0; }
.dks-empty-big {
  font-size: 15px; color: #6a89a0; text-align: center;
  padding: 30px 0; border: 2px dashed rgba(255,255,255,.08);
  border-radius: 10px; margin-top: 4px;
}

/* Section wrapper in training pages */
.stats-section {
  background: var(--navy-900);
  padding: clamp(48px, 7vw, 80px) 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.stats-section h2 { color: #fff; }
.stats-section .section-sub { color: #7e96ae; }

@media (max-width: 540px) {
  .dks-cards { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .dks-num { font-size: 22px; }
  .dks-bar-track { width: 60px; }
  .dks-bar-row { gap: 6px; }
}
@media (max-width: 400px) {
  .dks-cards { grid-template-columns: 1fr 1fr; }
  .dks-card:last-child { grid-column: span 2; }
}

/* RTL fixes for stats widget */
[dir="rtl"] .dks-section-title::before { margin-right: 0; margin-left: 8px; }
[dir="rtl"] .dks-bar-pct { text-align: right; }
[dir="rtl"] .dks-widget::before { right: auto; left: -60px; }
[dir="rtl"] .dks-bar-row { direction: rtl; }

/* ---- Global stats widget extras ---- */
.dks-global {
  background: linear-gradient(145deg, #0a1f38 0%, #091729 100%);
  border-color: rgba(200, 164, 92, .30);
}
.dks-global::before {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,164,92,.16) 0%, transparent 65%);
}

/* Hero counter */
.dks-global-hero {
  text-align: center;
  padding: 28px 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 22px;
}
.dks-global-num {
  display: block;
  font-family: "Cairo", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(52px, 9vw, 80px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #f0d080 0%, var(--gold) 50%, #c8a45c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.dks-global-lbl {
  display: block;
  font-family: "Cairo", "Tajawal", sans-serif;
  font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 6px;
}
.dks-global-sub {
  display: block;
  font-size: 13px; color: #6a89a0;
}

/* Gold bar variant */
.dks-bar-fill.dks-bar-gold {
  background: linear-gradient(90deg, #c8a45c, #f0d080);
}

/* Loading skeleton */
.dks-loading-bar {
  height: 6px; background: rgba(255,255,255,.08);
  border-radius: 999px; overflow: hidden; margin-top: 20px;
}
.dks-loading-fill {
  height: 100%; width: 30%;
  background: linear-gradient(90deg, transparent, rgba(200,164,92,.5), transparent);
  border-radius: 999px;
  animation: dks-shimmer 1.4s ease-in-out infinite;
}
@keyframes dks-shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* Two-column layout for both widgets side by side */
.dks-dual-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 820px) {
  .dks-dual-grid { grid-template-columns: 1fr; }
}

/* Live pulse badge */
.dks-live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,164,92,.12); border: 1px solid rgba(200,164,92,.25);
  color: var(--gold-soft); font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 18px;
}
.dks-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4cdb8f; flex: none;
  box-shadow: 0 0 0 0 rgba(76,219,143,.5);
  animation: dks-pulse 2s ease infinite;
}
@keyframes dks-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(76,219,143,.5); }
  70%  { box-shadow: 0 0 0 5px rgba(76,219,143,0); }
  100% { box-shadow: 0 0 0 0 rgba(76,219,143,0); }
}

[dir="rtl"] .dks-global-num { direction: ltr; }


/* ===================================================================
   Floating WhatsApp contact button
   =================================================================== */
.wa-float {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: calc(clamp(16px, 4vw, 28px) + env(safe-area-inset-bottom, 0px));
  z-index: 900;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-body);
}
[dir="rtl"] .wa-float { right: auto; left: clamp(16px, 4vw, 28px); }

.wa-float-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .42), 0 4px 10px rgba(8, 24, 46, .18);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.wa-float-btn svg { width: 32px; height: 32px; }

.wa-float:hover .wa-float-btn {
  transform: translateY(-3px) scale(1.05);
  background: #1ebe5a;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .5), 0 6px 14px rgba(8, 24, 46, .22);
}
.wa-float:focus-visible { outline: none; }
.wa-float:focus-visible .wa-float-btn {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* gently pulsing ring (auto-disabled by the reduced-motion rule above) */
.wa-float-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* hover/focus tooltip label */
.wa-float-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  background: var(--navy-800);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.wa-float-label::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-800);
}
[dir="rtl"] .wa-float-label {
  right: auto;
  left: calc(100% + 14px);
  transform: translateY(-50%) translateX(-8px);
}
[dir="rtl"] .wa-float-label::after {
  left: auto;
  right: 100%;
  border-left-color: transparent;
  border-right-color: var(--navy-800);
}
.wa-float:hover .wa-float-label,
.wa-float:focus-visible .wa-float-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 600px) {
  .wa-float-btn { width: 54px; height: 54px; }
  .wa-float-btn svg { width: 30px; height: 30px; }
  .wa-float-label { display: none; }
}

