/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #007aff;
  --primary-dark: #0062cc;
  --text:         #1a1a2e;
  --text2:        #4a4a6a;
  --text3:        #888aaa;
  --bg:           #ffffff;
  --bg2:          #f5f7fa;
  --bg3:          #eef1f8;
  --border:       #e4e8f0;
  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.12);
  --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(228,232,240,0.6);
  transition: box-shadow .25s;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(0,122,255,0.18);
}
.logo-text {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  text-decoration: none;
  transition: color .15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--primary); }
.nav-download {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #007aff, #5856d6);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  padding: 9px 20px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0,122,255,0.30);
  transition: opacity .15s, box-shadow .15s, transform .15s;
}
.nav-download:hover {
  opacity: .9;
  box-shadow: 0 4px 20px rgba(0,122,255,0.40);
  transform: translateY(-1px);
}
.store-toggle { position: relative; display: inline-block; }
.store-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,12,20,0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  z-index: 399;
}
.store-backdrop.open { opacity: 1; pointer-events: auto; }
.store-dropdown {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  padding: 28px;
  display: none;
  gap: 24px;
  z-index: 400;
}
.store-dropdown.open { display: flex; }
.store-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 128px;
  text-decoration: none;
}
.store-qr {
  width: 108px;
  height: 108px;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.store-option-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}
.store-option-sub {
  font-size: 11px;
  color: var(--text3);
  text-align: center;
}
.cta-qr-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.cta-qr-img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  background: #fff;
  padding: 6px;
}
.cta-qr-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.lang-toggle { position: relative; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px 5px 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  font-family: var(--font);
  transition: border-color .15s, background .15s;
  white-space: nowrap;
}
.lang-current:hover { border-color: var(--primary); background: #fff; }
.lang-globe { font-size: 15px; line-height: 1; }
.lang-chevron { opacity: .5; transition: transform .2s; flex-shrink: 0; }
.lang-toggle.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: 6px;
  min-width: 160px;
  display: none;
  z-index: 200;
}
.lang-toggle.open .lang-dropdown { display: block; }
.lang-btn {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  padding: 7px 10px;
  border-radius: 8px;
  transition: background .12s, color .12s;
  font-family: var(--font);
  text-align: left;
}
.lang-btn:hover { background: var(--bg2); }
.lang-btn.active { background: var(--primary); color: #fff; font-weight: 600; }

/* ── Burger menu ─────────────────────────────────────────────── */
.burger-btn {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .15s, background .15s;
}
.burger-btn:hover { border-color: var(--primary); background: #fff; }
.burger-btn span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--text2);
  transition: transform .2s, opacity .2s;
}
.burger-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.burger-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,12,20,0.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  z-index: 199;
}
.burger-overlay.open { opacity: 1; pointer-events: auto; }

.burger-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 84vw);
  background: #fff;
  box-shadow: -8px 0 32px rgba(0,0,0,0.14);
  z-index: 200;
  padding: 88px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .25s ease;
  overflow-y: auto;
}
.burger-menu.open { transform: translateX(0); }
.burger-menu a {
  color: var(--text2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 4px;
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.burger-menu a:hover { color: var(--primary); }

/* ── Shared ──────────────────────────────────────────────────── */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text);
}
.section-sub {
  margin-top: 14px;
  font-size: 18px;
  color: var(--text2);
  max-width: 560px;
}
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  transition: background .15s, transform .12s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(0,122,255,0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,122,255,0.4);
}
button.btn-primary { border: none; cursor: pointer; font-family: var(--font); }
.btn-ghost {
  display: inline-block;
  color: var(--text2);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 100px;
  transition: color .15s, background .15s;
}
.btn-ghost:hover { color: var(--primary); background: var(--bg2); }
.btn-large { font-size: 17px; padding: 18px 36px; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  padding-top: 100px;
  padding-bottom: 0;
  background: linear-gradient(160deg, #ffffff 0%, #f0f4ff 60%, #e8f0ff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,122,255,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0px 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e8f0ff, #f0e8ff);
  color: #5856d6;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(88,86,214,0.2);
}
.hero-text h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2a2a5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--text2);
  margin-bottom: 0px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-wave {
  margin-top: 60px;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── Phone mockup ─────────────────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0;
  position: relative;
}
.phone-wrap {
  position: relative;
  display: inline-block;
}
.phone-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0,122,255,0.3) 0%, transparent 70%);
  filter: blur(16px);
}
.phone {
  width: 240px;
  height: 480px;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 14px 10px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25), 0 0 0 2px rgba(255,255,255,0.1) inset;
}
.phone-notch {
  width: 80px;
  height: 20px;
  background: #1a1a2e;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #f5f7fa;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-topbar {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.phone-topbar-title {
  flex: 1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.2px;
  text-align: center;
  background: linear-gradient(135deg, #007aff, #5856d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.phone-nav-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  cursor: default;
  background: rgba(120,120,128,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.phone-nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.phone-item{
  width: 46px;
  height: 46px;
  border-radius: 6px;
}
.phone-map {
  flex: 1;
  background: #e8ecf0;
  position: relative;
  overflow: hidden;
}
.map-road {
  position: absolute;
  background: #fff;
}
.map-road-h { left: 0; right: 0; height: 8%; }
.map-road-v { top: 0; bottom: 0; width: 8%; }
.map-block {
  position: absolute;
  background: #d4dae8;
  border-radius: 4px;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.pin-dot {
  width: 18px;
  height: 18px;
  background: #007aff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,122,255,0.4);
}
.map-pin-active .pin-dot {
  background: #ff3b30;
  box-shadow: 0 2px 8px rgba(255,59,48,0.4);
  width: 22px;
  height: 22px;
}

.phone-card {
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.phone-card-emoji { font-size: 22px; }
.phone-card-info { flex: 1; }
.phone-card-name { font-size: 11px; font-weight: 700; color: var(--text); }
.phone-card-meta { font-size: 10px; color: var(--text3); margin-top: 2px; }
.phone-card-heart { font-size: 16px; }

/* ── Features ────────────────────────────────────────────────── */
.features {
  background: var(--bg2);
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon { width: 26px; height: 26px; display: block; flex-shrink: 0; }
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
}

/* ── How it works ────────────────────────────────────────────── */
.how {
  padding: 100px 0;
  background: var(--bg);
}
.how h2 { margin-top: 12px; }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 16px;
  opacity: 0.6;
}
.step-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #007aff18, #5856d618);
  border-radius: 5px;
  color: var(--primary);
}
.step-icon svg {
  width: 26px;
  height: 26px;
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.step p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
}
.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 56px;
  flex-shrink: 0;
  width: 60px;
}
.step-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--primary), var(--border));
  border-radius: 2px;
}
.step-arrow-icon {
  font-size: 18px;
  color: var(--primary);
  margin-top: 6px;
  opacity: 0.6;
}

/* ── Live Demo ───────────────────────────────────────────────── */
.live-demo {
  padding: 100px 0 120px;
  background: var(--bg2);
  text-align: center;
}
.live-demo .section-label,
.live-demo .section-sub {
  margin-left: auto;
  margin-right: auto;
}
.live-demo h2 { margin-top: 12px; }
.live-demo .section-sub { margin-bottom: 48px; }

/* Plain screenshot shown on load — no device chrome, just the picture, so
   there's no <iframe> on first paint (Google's Ad Preview can't render inside
   iframes and flags the area) and no extra DOM for AdSense to skip over. */
.demo-shell {
  max-width: 920px;
  margin: 0 auto;
  cursor: pointer;
}
.demo-shot {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

/* Cap the mobile screenshot to the same width as .phone-frame below, so the
   swap from screenshot to live iframe doesn't jump in size. */
@media (max-width: 720px) {
  .demo-shell { max-width: 240px; }
  .demo-shot { border-radius: 30px; }
}

/* Device frame, built only after a click/tap swaps the screenshot for an iframe. */
.laptop-frame {
  background: #1a1a2e;
  border-radius: 18px 18px 6px 6px;
  padding: 16px 16px 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.28), 0 0 0 2px rgba(255,255,255,0.06) inset;
  position: relative;
}
.laptop-frame-cam {
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #333;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.04);
}
.laptop-frame-screen {
  background: #f5f7fa;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.laptop-frame-base {
  height: 20px;
  background: linear-gradient(180deg, #eef0f4 0%, #d3d6de 45%, #a9adb9 100%);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.22);
  position: relative;
}
.laptop-frame-base::before {
  /* hairline seam where the lid meets the body */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(0,0,0,0.35);
}
.laptop-frame-notch {
  position: absolute;
  top: 2px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 8px;
  background: #969aa6;
  border-radius: 0 0 7px 7px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15) inset;
}

.phone-frame {
  width: 240px;
  height: 480px;
  margin: 0 auto;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 14px 10px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25), 0 0 0 2px rgba(255,255,255,0.1) inset;
}
.phone-frame-notch {
  width: 80px; height: 20px;
  background: #1a1a2e;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-frame-screen {
  width: 100%;
  height: 100%;
  background: #f5f7fa;
  border-radius: 30px;
  overflow: hidden;
}

.demo-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #f5f7fa;
}

/* ── For Users ───────────────────────────────────────────────── */
.for-users {
  background: var(--bg2);
  padding: 100px 0;
}
.for-users-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.for-users-text h2 { margin-top: 12px; }
.users-list {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.users-list li {
  font-size: 15px;
  color: var(--text2);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.users-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}
.for-users-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mini-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.mini-card:hover { transform: translateX(4px); }
.mini-card-offset { margin-left: 24px; }
.mini-card-icon { font-size: 28px; flex-shrink: 0; }
.mini-card-body { flex: 1; }
.mini-card-name { font-size: 15px; font-weight: 700; color: var(--text); }
.mini-card-venue { font-size: 12px; color: var(--text3); margin-top: 2px; }
.mini-card-stars { font-size: 11px; margin-top: 4px; }

/* ── CTA ─────────────────────────────────────────────────────── */
.cta {
  padding: 100px 0;
  background: var(--bg);
}
.cta-box {
  background: linear-gradient(135deg, #007aff, #5856d6);
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  top: -100px; right: -100px;
}
.cta-box::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  bottom: -80px; left: -60px;
}
.cta-logo { width: 72px; height: 72px; object-fit: contain; border-radius: 5px; margin-bottom: 20px; position: relative; z-index: 1; }
.cta-box h2 {
  color: #fff;
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-box p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.cta-box .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}
.cta-box .btn-primary:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
}

/* ── Blog ────────────────────────────────────────────────────── */
.blog-hero {
  background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events: none;
}
.blog-hero .section-label {
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.18);
  border: none;
}
.blog-hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.2;
}
.blog-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
.blog-hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}
.blog-hero-wave svg { display: block; width: 100%; }
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  transition: color .15s;
}
.blog-back:hover { color: #fff; }

.blog-list {
  background: #f5f7fa;
  padding: 60px 0 80px;
}
.blog-list .section-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 860px;
}

/* Blog listing cards */
.blog-card-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 860px;
}
.blog-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 28px rgba(0,0,0,.07);
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,.12);
}
.blog-card-img {
  width: 220px;
  flex-shrink: 0;
  object-fit: cover;
}
.blog-card-body {
  padding: 32px 36px;
  min-width: 0;
}
.blog-card h2 {
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 10px;
  line-height: 1.3;
}
.blog-card p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
  margin: 0 0 16px;
}
.blog-card-more {
  font-size: 14px;
  font-weight: 700;
  color: #007aff;
}

.blog-article {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 28px rgba(0,0,0,.07);
  padding: 44px 52px;
  overflow: hidden;
}
.blog-article-img {
  display: block;
  width: calc(100% + 104px);
  margin: -44px -52px 32px;
  max-width: none;
  height: 340px;
  object-fit: cover;
}
.blog-article-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 28px;
}
.blog-article-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}
.blog-article-inline-img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  margin: 16px 0 20px;
}
.blog-article-tag {
  display: inline-block;
  background: linear-gradient(135deg,#007aff1a,#5856d61a);
  color: #007aff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.blog-article > h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 18px;
  line-height: 1.3;
}
.blog-article p {
  color: #555;
  line-height: 1.8;
  margin: 0 0 14px;
  font-size: 15px;
}
.blog-article h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f2f7;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-article h4 {
  font-size: .97rem;
  font-weight: 700;
  color: #007aff;
  margin: 22px 0 6px;
}
.blog-article h4 .venue-loc {
  font-weight: 500;
  color: #888;
  font-size: .88rem;
  margin-left: 4px;
}
.blog-article h4 .venue-note {
  font-size: .75rem;
  font-weight: 600;
  background: #fff3e0;
  color: #ff9500;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
}
.blog-article ul {
  margin: 0 0 14px;
  padding-left: 22px;
}
.blog-article ul li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: 15px;
}
.blog-article ul li strong {
  color: #1a1a2e;
}
.blog-article .drink-callout {
  background: linear-gradient(135deg,#007aff0d,#5856d60d);
  border-left: 3px solid #007aff;
  border-radius: 0 10px 10px 0;
  padding: 10px 16px;
  margin: 10px 0 16px;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}
.blog-article .drink-callout strong {
  color: #007aff;
}
.blog-article .disclaimer {
  background: #fff9f0;
  border-left: 3px solid #ff9500;
  border-radius: 0 10px 10px 0;
  padding: 12px 18px;
  margin: 28px 0 0;
  font-size: 13px;
  color: #777;
  line-height: 1.7;
}
.blog-article .attribution {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #f0f2f7;
  font-size: 12px;
  color: #bbb;
  font-style: italic;
}
@media (max-width: 680px) {
  .blog-article { padding: 28px 22px; }
  .blog-article-img { width: calc(100% + 44px); margin: -28px -22px 24px; height: 220px; }
  .blog-article-gallery { grid-template-columns: 1fr 1fr; }
  .blog-card { flex-direction: column; }
  .blog-card-img { width: 100%; height: 160px; }
  .blog-card-body { padding: 22px 22px 24px; }
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 48px 0;
  text-align: center;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer-logo-img { width: 28px; height: 28px; object-fit: contain; border-radius: 6px; }
.footer-tagline {
  font-size: 14px;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color .15s;
}
.footer-links a:hover { color: #fff; }
.footer-copy {
  font-size: 12px;
  opacity: 0.4;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 0px;
  }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 0px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .for-users-grid { grid-template-columns: 1fr; gap: 40px; }
  .for-users-cards { padding: 0 20px; }
}

@media (max-width: 900px) {
  .nav-inner { padding: 0 20px; }
  .nav-right { gap: 12px; }
  .nav-links { gap: 12px; }
  .nav-download { padding: 7px 16px; font-size: 13px; }
  .lang-current { padding: 5px 10px 5px 8px; font-size: 12px; gap: 4px; }
  .logo-text { font-size: 17px; }
}

@media (max-width: 600px) {
  .nav-inner { padding: 0 16px; }
  .nav-right { gap: 10px; }
  .nav-links a.nav-link { display: none; }
  .nav-download { padding: 7px 14px; }
  .logo-icon { width: 30px; height: 30px; }
  .logo-text { font-size: 16px; }
  .burger-btn { display: flex; width: 34px; height: 34px; }
  .store-dropdown { padding: 14px; gap: 12px; width: calc(100vw - 48px); justify-content: center; }
  .store-option { width: 108px; }
  .store-qr { width: 92px; height: 92px; }
}
@media (max-width: 360px) {
  .logo-text { display: none; }
}

@media (max-width: 640px) {
  .footer-links { flex-direction: column; gap: 12px; align-items: center; }
  .features-grid { grid-template-columns: 1fr; }
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .step { padding: 0; max-width: 280px; }
  .step-connector { padding-top: 0; width: auto; flex-direction: row; gap: 8px; }
  .step-line { width: 2px; height: 30px; background: linear-gradient(180deg, var(--border), var(--primary)); }
  .step-arrow-icon { transform: rotate(90deg); margin: 0; }
  .cta-box { padding: 48px 24px; }
  .mini-card-offset { margin-left: 0; }
  .hero-sub { font-size: 16px; }
}
