/* ── RESET & BASE ───────────────────────────────────── */
:root {
  --primary: #2563eb;
  --primary-light: #dbeafe;
  --accent: #06b6d4;
  --grad: linear-gradient(135deg, #06b6d4, #2563eb);
  --dark: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --surface: #ffffff;
  --bg: #f8fafc;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(15,23,42,0.08);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }

/* ── BRAND ──────────────────────────────────────────── */
.brand { display:flex; align-items:center; }
.brand-name { display:inline-flex; align-items:center; letter-spacing:-0.5px; }

/*
  .brand-k: styled to match the app icon K —
  Bold, slightly italic, gradient fill (cyan→blue)
  No box. Just the letter itself.
*/
.brand-k {
  font-size:28px; font-weight:900; font-style:italic;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  font-family:'Outfit',sans-serif;
  line-height:1; display:inline-block;
}

/* 'am' after the K badge, same weight as Kam was */
.brand-am {
  font-size:22px; font-weight:900; color:var(--dark);
}

/* 'Bazaar' lighter weight */
.brand-baz { font-size:22px; font-weight:400; color:var(--dark); }

/* ── LANGUAGE BAR (below navbar) ─────────────────────── */
.lang-bar {
  position:fixed; top:60px; left:0; right:0; z-index:90;
  background:white; border-bottom:1px solid var(--border);
  padding:8px 18px;
  display:flex; align-items:center; gap:10px;
  overflow-x:auto; -webkit-overflow-scrolling:touch;
  scrollbar-width:none; box-shadow:0 2px 6px rgba(0,0,0,0.03);
}
.lang-bar::-webkit-scrollbar { display:none; }
.lang-bar-options { display:flex; gap:6px; flex-shrink:0; }
.lang-chip {
  padding:5px 13px; border-radius:20px;
  border:1.5px solid var(--border);
  font-size:13px; font-weight:800; cursor:pointer;
  color:var(--muted); transition:0.18s; white-space:nowrap;
  background:white;
}
.lang-chip:hover { border-color:var(--primary); color:var(--primary); }
.lang-chip.active { background:var(--grad); color:white; border-color:transparent; box-shadow:0 3px 8px rgba(37,99,235,0.3); }

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:100;
  height:60px;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 18px;
}
.nav-cta {
  background:var(--grad); color:white;
  font-weight:800; font-size:13px;
  padding:8px 16px; border-radius:30px;
  white-space:nowrap;
  box-shadow:0 4px 12px rgba(37,99,235,0.3);
  transition:0.2s;
}
.nav-cta:hover { transform:translateY(-1px); }

/* ── LANGUAGE SELECTOR ──────────────────────────────── */
.lang-wrap { position:relative; }
.lang-btn {
  display:flex; align-items:center; gap:4px;
  background:var(--bg); border:1px solid var(--border);
  border-radius:30px; padding:7px 12px;
  font-family:'Outfit',sans-serif; font-size:13px; font-weight:700;
  color:var(--dark); cursor:pointer; transition:0.2s;
}
.lang-btn:hover { border-color:var(--primary); background:white; }
.lang-btn .material-icons-round { font-size:16px; color:var(--primary); }
.lang-arrow { font-size:16px !important; color:var(--muted) !important; transition:transform 0.2s; }
.lang-wrap.open .lang-arrow { transform:rotate(180deg); }

.lang-menu {
  display:none; flex-direction:column;
  position:absolute; top:calc(100% + 8px); right:0;
  background:white; border:1px solid var(--border);
  border-radius:14px; min-width:160px;
  box-shadow:0 16px 40px rgba(15,23,42,0.15);
  overflow:hidden; z-index:200;
}
.lang-wrap.open .lang-menu { display:flex; animation:fadeDown 0.18s ease; }
@keyframes fadeDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.lang-item {
  padding:11px 16px; font-size:14px; font-weight:600;
  cursor:pointer; border-bottom:1px solid var(--bg);
  transition:0.15s;
}
.lang-item:last-child { border-bottom:none; }
.lang-item:hover { background:var(--bg); color:var(--primary); }
.lang-item.active { color:var(--primary); font-weight:800; }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  padding:120px 20px 56px; /* extra top padding to clear navbar + lang-bar */
  text-align:center;
  max-width:680px;
  margin:0 auto;
}
.badge {
  display:inline-block;
  background:var(--primary-light); color:var(--primary);
  font-weight:700; font-size:13px;
  padding:6px 14px; border-radius:30px;
  margin-bottom:20px; letter-spacing:0.2px;
}
.hero h1 {
  font-size:clamp(30px,8vw,52px);
  font-weight:900; line-height:1.15;
  margin-bottom:16px; color:var(--dark);
}
.grad { background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero p {
  color:var(--muted); font-size:clamp(15px,2.5vw,18px);
  max-width:520px; margin:0 auto 28px; font-weight:500;
}
.stats {
  display:flex; align-items:stretch;
  background:white; border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  max-width:380px; margin:0 auto 28px; overflow:hidden;
}
.stat { flex:1; padding:14px 8px; text-align:center; }
.stat strong { display:block; font-size:22px; font-weight:900; color:var(--primary); }
.stat span { font-size:10px; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:0.5px; }
.stat-divider { width:1px; background:var(--border); }
.btn-hero {
  display:inline-block; background:var(--grad); color:white;
  font-weight:800; font-size:16px; padding:15px 34px;
  border-radius:50px;
  box-shadow:0 8px 24px rgba(37,99,235,0.35);
  transition:0.2s;
}
.btn-hero:hover { transform:translateY(-2px); box-shadow:0 12px 28px rgba(37,99,235,0.4); }

/* ── BENEFITS SECTION ───────────────────────────────── */
.benefits-section {
  padding:28px 20px 8px;
  max-width:900px; margin:0 auto;
}
.benefits-section h2 {
  font-size:clamp(18px,4vw,26px); font-weight:800;
  text-align:center; margin-bottom:16px; color:var(--dark);
}
.benefits-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:10px;
}
.benefit-item {
  display:flex; align-items:flex-start; gap:12px;
  background:white; border:1px solid var(--border);
  border-radius:var(--radius); padding:14px 16px;
  transition:0.2s;
}
.benefit-item:hover { border-color:var(--primary); box-shadow:0 6px 18px rgba(37,99,235,0.08); }
.benefit-icon { font-size:22px; flex-shrink:0; margin-top:2px; }
.benefit-item h4 { font-size:14px; font-weight:800; color:var(--dark); margin-bottom:2px; }
.benefit-item p { font-size:12px; color:var(--muted); font-weight:500; line-height:1.4; }

/* Credit highlight card */
.credit-highlight {
  border-color: #fbbf24; background: linear-gradient(135deg,#fffbeb,#fef3c7);
}
.credit-highlight:hover { border-color:#f59e0b; box-shadow:0 8px 24px rgba(251,191,36,0.25); }
.credit-highlight h4 { color:#92400e; }
.credit-highlight p { color:#78350f; }
.credit-highlight strong { color:#d97706; }

/* ── HOW IT WORKS ───────────────────────────────────── */
.how-section { padding:28px 20px; max-width:900px; margin:0 auto; text-align:center; }
.how-section h2 { font-size:clamp(18px,4vw,26px); font-weight:800; margin-bottom:24px; color:var(--dark); }
.how-timeline { display:grid; grid-template-columns:repeat(auto-fit, minmax(240px,1fr)); gap:20px; }
.how-step {
  background:white; border:1px solid var(--border); border-radius:var(--radius);
  padding:24px 20px; text-align:center; transition:0.3s;
  box-shadow:var(--shadow); position:relative;
}
.how-step:hover {
  transform:translateY(-4px); border-color:var(--primary);
  box-shadow:0 12px 24px rgba(37,99,235,0.1);
}
.how-num {
  width:40px; height:40px; background:var(--grad); color:white;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:20px; font-weight:900; margin:0 auto 16px;
  box-shadow:0 4px 12px rgba(37,99,235,0.3);
}
.how-step h3 { font-size:16px; font-weight:800; color:var(--dark); margin-bottom:8px; }
.how-step p { font-size:13px; color:var(--muted); line-height:1.5; font-weight:500; }

.why-section {
  padding:16px 20px 24px;
  max-width:900px; margin:0 auto; text-align:center;
}
.why-section h2 {
  font-size:clamp(18px,4vw,26px); font-weight:800;
  margin-bottom:16px; color:var(--dark);
}
.pillars { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:10px; }
.pillar {
  background:white; border:1px solid var(--border);
  border-radius:var(--radius); padding:18px 18px; text-align:left; transition:0.2s;
}
.pillar:hover { box-shadow:0 8px 20px rgba(37,99,235,0.07); border-color:var(--primary); transform:translateY(-2px); }
.pillar-icon { font-size:22px; margin-bottom:8px; }
.pillar h3 { font-size:14px; font-weight:800; margin-bottom:6px; color:var(--dark); }
.pillar p { font-size:12px; color:var(--muted); font-weight:500; line-height:1.4; }

/* ── CATEGORIES ─────────────────────────────────────── */
.cat-section { padding:0 20px 56px; max-width:900px; margin:0 auto; }
.cat-section h2 {
  font-size:clamp(22px,5vw,34px); font-weight:800;
  margin-bottom:8px; text-align:center; color:var(--dark);
}
.cat-sub { color:var(--muted); font-size:14px; font-weight:500; text-align:center; margin-bottom:20px; }
.cat-tabs {
  display:flex; background:white; border:1px solid var(--border);
  border-radius:var(--radius); padding:4px; gap:4px; margin-bottom:16px;
  box-shadow:var(--shadow);
}
.tab {
  flex:1; padding:11px 8px; border-radius:10px; border:none; background:transparent;
  font-family:'Outfit',sans-serif; font-size:14px; font-weight:700; color:var(--muted);
  cursor:pointer; transition:0.2s;
}
.tab.active { background:var(--grad); color:white; box-shadow:0 4px 10px rgba(37,99,235,0.3); }
.cat-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(140px,1fr));
  gap:10px;
}
.cat-card {
  background:white; border:1px solid var(--border); border-radius:var(--radius);
  padding:16px 12px; text-align:center; cursor:pointer; transition:0.2s;
  display:flex; flex-direction:column; align-items:center; gap:6px;
}
.cat-card:hover { border-color:var(--primary); box-shadow:0 8px 20px rgba(37,99,235,0.12); transform:translateY(-2px); }
.cat-card:active { transform:scale(0.97); }
.cat-card .ci { font-size:26px; }
.cat-card .cn { font-size:12px; font-weight:800; color:var(--dark); }
.cat-card .cc { font-size:10px; color:var(--muted); font-weight:600; }

/* ── FORM SECTION ───────────────────────────────────── */
.form-section { padding:0 20px 56px; max-width:640px; margin:0 auto; }
.form-card {
  background:white; border:1px solid var(--border);
  border-radius:20px; padding:32px 24px;
  box-shadow:0 20px 60px rgba(15,23,42,0.1);
}
.form-top { text-align:center; margin-bottom:24px; }
.form-top h2 { font-size:clamp(20px,5vw,28px); font-weight:900; margin-bottom:6px; color:var(--dark); }
.form-top p { color:var(--muted); font-size:14px; font-weight:500; }

.field { margin-bottom:16px; }
label { display:block; font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:0.8px; color:var(--muted); margin-bottom:7px; }
.optional-tag { background:var(--bg); color:var(--muted); font-size:10px; font-weight:700; padding:2px 8px; border-radius:10px; margin-left:6px; text-transform:lowercase; letter-spacing:0; }

.inp-wrap {
  display:flex; align-items:center;
  background:var(--bg); border:2px solid var(--border);
  border-radius:12px; padding:0 14px; transition:0.2s;
}
.inp-wrap:focus-within { border-color:var(--primary); background:white; box-shadow:0 0 0 3px rgba(37,99,235,0.08); }
.inp-wrap .material-icons-round { font-size:19px; color:#94a3b8; flex-shrink:0; transition:0.2s; }
.inp-wrap:focus-within .material-icons-round { color:var(--primary); }
.inp-wrap input {
  flex:1; border:none; background:transparent;
  padding:15px 10px; font-size:15px;
  font-family:'Outfit',sans-serif; font-weight:600; color:var(--dark); outline:none;
}
.inp-wrap input::placeholder { color:#94a3b8; font-weight:500; }

.cat-selector {
  display:flex; align-items:center; justify-content:space-between;
  background:var(--bg); border:2px solid var(--border);
  border-radius:12px; padding:14px; cursor:pointer; transition:0.2s;
}
.cat-selector:hover { border-color:var(--primary); background:white; }
.cat-sel-inner { display:flex; align-items:center; gap:10px; color:var(--muted); }
.cat-sel-inner .material-icons-round { font-size:19px; }
#catDisplay { font-size:15px; font-weight:700; color:var(--dark); }
.cat-selector > .material-icons-round { color:var(--muted); }

.tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.tag {
  display:inline-flex; align-items:center; gap:5px;
  background:var(--primary-light); color:var(--primary);
  padding:5px 12px; border-radius:30px; font-size:12px; font-weight:800;
}
.tag button { background:none; border:none; color:var(--primary); cursor:pointer; font-size:15px; line-height:1; }

.submit-btn {
  width:100%; padding:16px;
  background:var(--grad); color:white; border:none;
  border-radius:12px; font-family:'Outfit',sans-serif;
  font-size:15px; font-weight:800; cursor:pointer;
  transition:0.2s; box-shadow:0 8px 20px rgba(37,99,235,0.28);
  display:flex; align-items:center; justify-content:center; gap:8px;
  margin-top:8px;
}
.submit-btn:hover { transform:translateY(-2px); box-shadow:0 12px 28px rgba(37,99,235,0.38); }
.submit-btn:disabled { opacity:0.6; cursor:not-allowed; transform:none; }

/* ── FEEDBACK SECTION ───────────────────────────────── */
.feedback-section {
  padding:0 20px 60px; max-width:580px; margin:0 auto; text-align:center;
}
.feedback-section h2 {
  font-size:clamp(22px,5vw,32px); font-weight:800;
  margin-bottom:8px; color:var(--dark);
}
.feedback-section p { color:var(--muted); font-size:14px; font-weight:500; margin-bottom:24px; }
.fb-card {
  background:white; border:1px solid var(--border);
  border-radius:20px; padding:28px 22px;
  box-shadow:var(--shadow);
}
.star-row { display:flex; justify-content:center; gap:8px; margin-bottom:18px; }
.star {
  font-size:34px; color:#e2e8f0; cursor:pointer;
  transition:color 0.15s, transform 0.15s; line-height:1;
}
.star.active, .star.hover { color:#f59e0b; transform:scale(1.12); }
.fb-card textarea {
  width:100%; border:2px solid var(--border); border-radius:12px;
  padding:14px; font-family:'Outfit',sans-serif;
  font-size:14px; font-weight:500; color:var(--dark);
  resize:none; min-height:90px; outline:none;
  background:var(--bg); transition:0.2s; margin-bottom:14px;
}
.fb-card textarea:focus { border-color:var(--primary); background:white; box-shadow:0 0 0 3px rgba(37,99,235,0.08); }

/* ── TESTIMONIALS ───────────────────────────────────── */
.testimonials-section {
  padding:0 20px 56px; max-width:900px; margin:0 auto;
}
.testimonials-section h2 {
  font-size:clamp(22px,5vw,34px); font-weight:800;
  text-align:center; margin-bottom:8px; color:var(--dark);
}
.testi-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:14px; margin-top:24px;
}
.testi-card {
  background:white; border:1px solid var(--border);
  border-radius:16px; padding:22px 18px;
  display:flex; flex-direction:column; gap:12px;
  transition:0.2s;
}
.testi-card:hover { box-shadow:0 8px 24px rgba(15,23,42,0.07); transform:translateY(-2px); }
.testi-stars { font-size:18px; color:#f59e0b; letter-spacing:2px; }
.testi-card > p { font-size:14px; color:#334155; font-style:italic; line-height:1.6; font-weight:500; flex:1; }
.testi-author { display:flex; align-items:center; gap:10px; }
.testi-avatar {
  width:38px; height:38px; border-radius:50%;
  background:var(--grad); color:white;
  font-weight:900; font-size:16px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.testi-author strong { display:block; font-size:14px; font-weight:800; color:var(--dark); }
.testi-author span { font-size:12px; color:var(--muted); font-weight:600; }

/* Hidden testimonials */
.testi-hidden { display:none; }
.testi-hidden.show { display:flex; }

/* See All button */
.see-all-btn {
  background:white; border:1.5px solid var(--primary);
  color:var(--primary); font-family:'Outfit',sans-serif;
  font-size:14px; font-weight:800; padding:10px 26px;
  border-radius:30px; cursor:pointer; transition:0.2s;
}
.see-all-btn:hover { background:var(--primary); color:white; }

/* ── SLOGAN ─────────────────────────────────────────── */
.slogan {
  font-size:15px; font-weight:700; color:rgba(255,255,255,0.9);
  margin:8px 0 4px; letter-spacing:0.01em;
}
.earn-word {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight:900;
}

/* ── LIVE BADGE ──────────────────────────────────────── */
.stat-live-wrap {
  display:flex; align-items:center; gap:6px; justify-content:center;
}
.live-badge {
  display:inline-flex; align-items:center; gap:4px;
  background:rgba(239,68,68,0.15); border:1px solid rgba(239,68,68,0.4);
  color:#ef4444; font-size:9px; font-weight:900; letter-spacing:0.08em;
  padding:2px 6px; border-radius:20px; vertical-align:middle;
}
.live-dot {
  display:inline-block; width:6px; height:6px;
  background:#ef4444; border-radius:50%;
  animation:livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:0.3; transform:scale(0.6); }
}

/* ── CITY DROPDOWN ───────────────────────────────────── */
.city-field { position:relative; }
.city-dropdown {
  position:absolute; top:calc(100% + 2px); left:0; right:0; z-index:120;
  background:white; border:1.5px solid var(--primary);
  border-radius:10px; box-shadow:0 8px 24px rgba(37,99,235,0.12);
  overflow:hidden; max-height:220px; overflow-y:auto;
}
.city-option {
  padding:10px 16px; font-size:14px; font-weight:600;
  color:var(--dark); cursor:pointer; transition:0.12s;
}
.city-option:hover, .city-option.active { background:var(--primary-light); color:var(--primary); }

.inp-wrap.invalid { border-color: #ef4444; animation: shake 0.4s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  text-align:center; padding:36px 20px;
  border-top:1px solid var(--border);
  color:var(--muted); font-size:13px; font-weight:500;
}

/* ── MODAL (slides up from bottom on mobile) ────────── */
.modal-bg {
  display:none; position:fixed; inset:0; z-index:200;
  background:rgba(15,23,42,0.5); backdrop-filter:blur(4px);
  align-items:flex-end; justify-content:center;
}
.modal-bg.open { display:flex; animation:fadeIn 0.18s; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.modal-panel {
  background:white; width:100%; max-width:600px;
  max-height:86vh; border-radius:20px 20px 0 0;
  display:flex; flex-direction:column; overflow:hidden;
  animation:slideUp 0.28s cubic-bezier(0.34,1.2,0.64,1);
}
@keyframes slideUp { from{transform:translateY(100%)} to{transform:translateY(0)} }

.modal-head {
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 18px; border-bottom:1px solid var(--border); flex-shrink:0;
}
.modal-head h3 { font-size:17px; font-weight:800; color:var(--dark); }
.icon-btn {
  background:none; border:none; width:34px; height:34px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:var(--muted); transition:0.2s;
}
.icon-btn:hover { background:#fee2e2; color:#ef4444; }

.modal-search {
  padding:10px 16px; border-bottom:1px solid var(--border); flex-shrink:0;
  display:flex; align-items:center; gap:10px;
}
.modal-search .material-icons-round { color:var(--muted); font-size:19px; }
.modal-search input {
  flex:1; border:none; font-family:'Outfit',sans-serif;
  font-size:15px; font-weight:600; color:var(--dark);
  outline:none; padding:8px 0; background:transparent;
}

.modal-list {
  flex:1; overflow-y:auto; padding:12px 14px;
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(155px,1fr));
  gap:10px; align-content:start;
}
.m-cat-item {
  background:var(--bg); border:1.5px solid var(--border);
  border-radius:12px; padding:14px 12px;
  display:flex; align-items:center; gap:10px;
  cursor:pointer; transition:0.18s;
}
.m-cat-item:hover { border-color:var(--primary); background:var(--primary-light); }
.m-cat-item:active { transform:scale(0.97); }
.m-cat-item .ci { font-size:22px; flex-shrink:0; }
.m-cat-info h4 { font-size:13px; font-weight:800; color:var(--dark); line-height:1.2; }
.m-cat-info small { font-size:11px; color:var(--muted); font-weight:600; }

.m-sub-item {
  grid-column:1/-1; display:flex; align-items:center; gap:12px;
  padding:13px; border:1.5px solid var(--border); border-radius:10px;
  cursor:pointer; transition:0.18s; background:white;
}
.m-sub-item:hover { border-color:var(--primary); }
.m-sub-item.checked { background:var(--primary-light); border-color:var(--primary); }
.chk {
  width:22px; height:22px; border-radius:6px; border:2px solid var(--border);
  flex-shrink:0; display:flex; align-items:center; justify-content:center;
  font-size:13px; color:white; transition:0.18s;
}
.m-sub-item.checked .chk { background:var(--primary); border-color:var(--primary); }
.m-sub-item.checked .chk::after { content:'✓'; }
.m-sub-label { font-size:14px; font-weight:700; color:var(--dark); }

.modal-back {
  display:inline-flex; align-items:center; gap:4px;
  font-size:13px; font-weight:700; color:var(--primary); cursor:pointer;
}
.modal-foot { padding:12px 14px; border-top:1px solid var(--border); flex-shrink:0; }
.modal-foot .submit-btn { margin-top:0; }

/* ── REVEAL ─────────────────────────────────────────── */
/* Sections are always visible - no opacity trick that can break */
.reveal-section { opacity:1; transform:none; }

/* ── SPIN ────────────────────────────────────────────── */
.spin { animation:spin 1s linear infinite; }
@keyframes spin { 100%{transform:rotate(360deg)} }

/* ── DESKTOP ──────────────────────────────────────────── */
@media(min-width:769px) {
  /* Navbar taller on desktop */
  .navbar { padding:0 40px; height:68px; }
  /* lang-bar sits at 68px on desktop */
  .lang-bar { top:68px; }
  /* Brand font sizes on desktop */
  .brand-k { font-size:32px; }
  .brand-am { font-size:26px; }
  .brand-baz { font-size:26px; }
  /* Hero must clear 68px navbar + ~42px lang-bar = 110px. Add comfortable gap. */
  .hero { padding:142px 40px 60px; }
  /* Modal centered on desktop */
  .modal-bg { align-items:center; }
  .modal-panel { border-radius:20px; max-height:80vh; }
}
