/* ============================================================
   searchly.app — DARK THEME
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0a0e1a;
  --bg2:         #0d1220;
  --card-bg:     #0f1729;
  --card-border: #1e2d4a;
  --blue:        #2563EB;
  --blue-bright: #3B7BF8;
  --blue-glow:   #1d4ed8;
  --blue-text:   #60a5fa;
  --white:       #ffffff;
  --text-1:      #f1f5f9;
  --text-2:      #94a3b8;
  --text-3:      #64748b;
  --border:      #1e293b;
  --green:       #4ade80;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --r:           8px;
  --r-lg:        12px;
  --r-xl:        16px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text-1); line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
html, body { max-width: 100%; overflow-x: hidden; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 60px;
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 16px; font-weight: 700; color: var(--white);
  margin-right: 40px; white-space: nowrap; flex-shrink: 0;
}
.nav-logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-link { font-size: 14px; font-weight: 400; color: var(--text-2); padding: 7px 13px; border-radius: var(--r); transition: color .15s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-icon-btn { width: 34px; height: 34px; border-radius: var(--r); background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-2); transition: color .15s, background .15s; }
.nav-icon-btn:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.btn-signin { font-size: 14px; font-weight: 500; color: var(--text-1); padding: 8px 16px; border-radius: var(--r); border: none; background: transparent; cursor: pointer; font-family: var(--font); transition: color .15s; white-space: nowrap; }
.btn-signin:hover { color: var(--white); }
.btn-get-started { font-size: 14px; font-weight: 600; color: var(--white); padding: 9px 18px; border-radius: var(--r); background: var(--blue); border: none; cursor: pointer; font-family: var(--font); transition: background .15s; white-space: nowrap; }
.btn-get-started:hover { background: var(--blue-bright); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 36px; height: 36px; background: transparent; border: none; cursor: pointer; padding: 0; flex-shrink: 0; }
.nav-hamburger span { display: block; width: 20px; height: 2px; background: var(--text-1); border-radius: 2px; transition: all .25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav { display: none; position: fixed; top: 60px; left: 0; right: 0; z-index: 190; background: rgba(10,14,26,0.98); border-bottom: 1px solid var(--border); padding: 12px 16px 20px; flex-direction: column; gap: 2px; backdrop-filter: blur(16px); }
.mobile-nav.open { display: flex; }
.mobile-nav-link { display: block; padding: 12px 14px; font-size: 15px; font-weight: 500; color: var(--text-2); border-radius: var(--r); transition: color .15s, background .15s; }
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--white); background: rgba(255,255,255,0.05); }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mobile-nav-cta { display: block; text-align: center; margin-top: 6px; padding: 12px; background: var(--blue); color: var(--white); border-radius: var(--r); font-size: 15px; font-weight: 600; transition: background .15s; }
.mobile-nav-cta:hover { background: var(--blue-bright); color: var(--white); }

/* ============================================================
   SHARED BUTTONS
   ============================================================ */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; background: var(--blue); color: var(--white); font-size: 15px; font-weight: 600; border: none; border-radius: var(--r); cursor: pointer; font-family: var(--font); transition: background .15s; white-space: nowrap; }
.btn-primary:hover { background: var(--blue-bright); }
.btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; background: transparent; color: var(--text-1); font-size: 15px; font-weight: 500; border: 1px solid var(--border); border-radius: var(--r); cursor: pointer; font-family: var(--font); transition: border-color .15s, color .15s; white-space: nowrap; }
.btn-secondary:hover { border-color: var(--text-3); color: var(--white); }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-label { font-size: 12px; font-weight: 600; color: var(--blue-text); letter-spacing: 2px; text-transform: uppercase; text-align: center; margin-bottom: 14px; }
.section-title { font-size: 36px; font-weight: 800; color: var(--white); text-align: center; letter-spacing: -0.5px; margin-bottom: 12px; line-height: 1.15; }
.section-desc { font-size: 15px; color: var(--text-2); text-align: center; max-width: 600px; margin: 0 auto 48px; line-height: 1.7; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 110px; padding-bottom: 70px; background: var(--bg); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 800px 500px at 72% 50%, rgba(29,78,216,0.13) 0%, transparent 70%), radial-gradient(ellipse 400px 400px at 28% 60%, rgba(37,99,235,0.07) 0%, transparent 60%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 460px; gap: 48px; align-items: center; }
.hero-left { display: flex; flex-direction: column; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; padding: 5px 13px; border-radius: 20px; background: rgba(37,99,235,0.15); border: 1px solid rgba(59,130,246,0.3); font-size: 12px; font-weight: 500; color: var(--blue-text); margin-bottom: 22px; width: fit-content; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-text); flex-shrink: 0; }
.hero-h1 { font-size: 50px; font-weight: 800; line-height: 1.08; letter-spacing: -1.5px; color: var(--white); margin-bottom: 20px; }
.hero-h1 .blue { color: var(--blue-text); }
.hero-sub { font-size: 17px; color: var(--text-2); line-height: 1.7; max-width: 540px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-trust { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 12px; color: var(--text-3); margin-bottom: 36px; }
.hero-trust-sep { opacity: 0.5; }
.hero-trust a { color: var(--blue-text); transition: color .15s; }
.hero-trust a:hover { color: var(--white); }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat-val { font-size: 26px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--text-2); margin-top: 4px; }

/* Face scan SVG */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.face-scan-wrap { width: 340px; height: 340px; position: relative; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.face-scan-svg { width: 100%; height: 100%; }
.face-detected-badge { position: absolute; bottom: 18px; right: -4px; background: rgba(13,18,32,0.92); border: 1px solid rgba(34,197,94,0.4); border-radius: 20px; padding: 6px 13px; display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 500; color: #4ade80; white-space: nowrap; }
.face-detected-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }

/* ============================================================
   WHAT IS SECTION
   ============================================================ */
.what-section { padding: 80px 24px; background: var(--bg2); }
.what-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.what-content h2 { font-size: 32px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; margin-bottom: 20px; line-height: 1.2; }
.what-content p { font-size: 15px; color: var(--text-2); line-height: 1.78; margin-bottom: 16px; }
.what-content p:last-child { margin-bottom: 0; }
.what-examples { display: flex; flex-direction: column; gap: 12px; }
.what-example-item { display: flex; align-items: flex-start; gap: 13px; padding: 16px 18px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r-lg); }
.what-example-icon { width: 34px; height: 34px; flex-shrink: 0; background: rgba(37,99,235,0.15); border: 1px solid rgba(59,130,246,0.2); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--blue-text); margin-top: 1px; }
.what-example-icon svg { width: 17px; height: 17px; }
.what-example-text { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.what-example-text strong { color: var(--text-1); font-weight: 600; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { padding: 80px 24px; background: var(--bg); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 0; position: relative; }
.how-grid::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px); height: 1px; background: linear-gradient(to right, rgba(59,130,246,0.3), rgba(59,130,246,0.1)); z-index: 0; }
.how-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r-lg); padding: 28px 22px; position: relative; z-index: 1; transition: border-color .2s; }
.how-card:hover { border-color: rgba(59,130,246,0.35); }
.how-step-num { width: 36px; height: 36px; background: rgba(37,99,235,0.15); border: 1px solid rgba(59,130,246,0.25); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: var(--blue-text); margin-bottom: 18px; }
.how-step-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.how-step-desc { font-size: 13px; color: var(--text-2); line-height: 1.7; }
.how-step-desc strong { color: var(--text-1); font-weight: 600; }

/* Results details */
.how-results-detail { margin-top: 40px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r-xl); padding: 28px 32px; }
.how-results-detail h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.how-results-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.how-result-item { display: flex; align-items: flex-start; gap: 10px; }
.how-result-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-text); flex-shrink: 0; margin-top: 5px; }
.how-result-text { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.how-result-text strong { color: var(--text-1); display: block; font-weight: 600; margin-bottom: 2px; }

/* ============================================================
   TEXT VS FACE SEARCH
   ============================================================ */
.vs-section { padding: 80px 24px; background: var(--bg2); }
.vs-inner { max-width: 1200px; margin: 0 auto; }
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.vs-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r-xl); padding: 32px 28px; }
.vs-card-label { font-size: 11px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.vs-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.3; }
.vs-card p { font-size: 14px; color: var(--text-2); line-height: 1.75; }
.vs-card p + p { margin-top: 12px; }
.vs-card.highlight { border-color: rgba(59,130,246,0.4); background: rgba(15,23,41,0.8); }
.vs-highlight-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--blue-text); background: rgba(37,99,235,0.12); border: 1px solid rgba(59,130,246,0.2); border-radius: 12px; padding: 3px 10px; margin-bottom: 14px; }

/* ============================================================
   SIX THINGS (USE CASES)
   ============================================================ */
.uses-section { padding: 80px 24px; background: var(--bg); }
.uses-inner { max-width: 1200px; margin: 0 auto; }
.uses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.use-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r-lg); padding: 28px 24px; transition: border-color .2s; }
.use-card:hover { border-color: rgba(59,130,246,0.35); }
.use-card-num { font-size: 11px; font-weight: 700; color: var(--blue-text); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.use-card-icon { width: 36px; height: 36px; background: rgba(37,99,235,0.15); border: 1px solid rgba(59,130,246,0.2); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--blue-text); }
.use-card-icon svg { width: 18px; height: 18px; }
.use-card h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.use-card p { font-size: 13px; color: var(--text-2); line-height: 1.7; }

/* ============================================================
   DOES AND DOESN'T
   ============================================================ */
.does-section { padding: 80px 24px; background: var(--bg2); }
.does-inner { max-width: 1200px; margin: 0 auto; }
.does-intro { font-size: 15px; color: var(--text-2); text-align: center; margin-bottom: 48px; font-style: italic; }
.does-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.does-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r-xl); padding: 28px; }
.does-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.does-card-icon { width: 32px; height: 32px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; }
.does-card-icon.green { background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.2); color: var(--green); }
.does-card-icon.red { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: #f87171; }
.does-card-icon svg { width: 16px; height: 16px; }
.does-card-title { font-size: 16px; font-weight: 700; color: var(--white); }
.does-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.does-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-2); line-height: 1.6; }
.does-bullet-green { width: 16px; height: 16px; flex-shrink: 0; border-radius: 50%; background: rgba(74,222,128,0.12); display: flex; align-items: center; justify-content: center; color: var(--green); margin-top: 1px; }
.does-bullet-green svg { width: 9px; height: 9px; }
.does-bullet-red { width: 16px; height: 16px; flex-shrink: 0; border-radius: 50%; background: rgba(239,68,68,0.1); display: flex; align-items: center; justify-content: center; color: #f87171; margin-top: 1px; }
.does-bullet-red svg { width: 9px; height: 9px; }
.does-note { background: rgba(37,99,235,0.06); border: 1px solid rgba(59,130,246,0.15); border-radius: var(--r-lg); padding: 18px 22px; font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ============================================================
   HOW YOUR PHOTO IS HANDLED
   ============================================================ */
.handled-section { padding: 80px 24px; background: var(--bg); }
.handled-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.handled-content h2 { font-size: 32px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; margin-bottom: 28px; line-height: 1.2; }
.handled-items { display: flex; flex-direction: column; gap: 16px; }
.handled-item { display: flex; align-items: flex-start; gap: 14px; }
.handled-item-icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(37,99,235,0.15); border: 1px solid rgba(59,130,246,0.2); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--blue-text); margin-top: 1px; }
.handled-item-icon svg { width: 17px; height: 17px; }
.handled-item-title { font-size: 14px; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
.handled-item-desc { font-size: 13px; color: var(--text-2); line-height: 1.65; }
.handled-visual { display: flex; align-items: center; justify-content: center; }
.handled-shield-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.handled-shield-circle { width: 200px; height: 200px; border-radius: 50%; background: linear-gradient(135deg, #1D4ED8, #2563EB); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 80px rgba(37,99,235,0.35); position: relative; }
.handled-shield-circle::before { content: ''; position: absolute; inset: -18px; border-radius: 50%; border: 1.5px solid rgba(37,99,235,0.22); }
.handled-shield-circle::after { content: ''; position: absolute; inset: -36px; border-radius: 50%; border: 1px solid rgba(37,99,235,0.1); }
.handled-shield-circle svg { color: var(--white); }
.handled-trust-badges { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.handled-badge { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r); font-size: 13px; color: var(--text-2); }
.handled-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.handled-badge strong { color: var(--text-1); font-weight: 600; }

/* ============================================================
   RESPONSIBLE USE
   ============================================================ */
.responsible-section { padding: 80px 24px; background: var(--bg2); }
.responsible-inner { max-width: 1200px; margin: 0 auto; }
.responsible-lead { font-size: 16px; color: var(--text-2); text-align: center; max-width: 640px; margin: 0 auto 48px; line-height: 1.7; }
.responsible-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.responsible-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r-xl); padding: 28px; }
.responsible-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.responsible-card-icon { width: 34px; height: 34px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; }
.responsible-card-icon.allowed { background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.2); color: var(--green); }
.responsible-card-icon.prohibited { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: #f87171; }
.responsible-card-icon svg { width: 16px; height: 16px; }
.responsible-card-title { font-size: 16px; font-weight: 700; color: var(--white); }
.responsible-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.responsible-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-2); line-height: 1.65; }
.r-dot-green { width: 16px; height: 16px; flex-shrink: 0; background: rgba(74,222,128,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green); margin-top: 1px; }
.r-dot-green svg { width: 9px; height: 9px; }
.r-dot-red { width: 16px; height: 16px; flex-shrink: 0; background: rgba(239,68,68,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #f87171; margin-top: 1px; }
.r-dot-red svg { width: 9px; height: 9px; }
.responsible-note { background: rgba(239,68,68,0.05); border: 1px solid rgba(239,68,68,0.15); border-radius: var(--r-lg); padding: 16px 20px; font-size: 14px; color: var(--text-2); line-height: 1.7; }
.responsible-note strong { color: #fca5a5; }

/* ============================================================
   WHY US
   ============================================================ */
.why-section { padding: 80px 24px; background: var(--bg); }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.why-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r-lg); padding: 26px 22px; transition: border-color .2s; }
.why-card:hover { border-color: rgba(59,130,246,0.3); }
.why-card-icon { width: 38px; height: 38px; background: rgba(37,99,235,0.15); border: 1px solid rgba(59,130,246,0.2); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--blue-text); margin-bottom: 16px; }
.why-card-icon svg { width: 18px; height: 18px; }
.why-card h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 9px; line-height: 1.3; }
.why-card p { font-size: 13px; color: var(--text-2); line-height: 1.68; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 80px 24px; background: var(--bg2); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--border); cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: flex-start; padding: 20px 0; gap: 20px; font-size: 15px; font-weight: 500; color: var(--text-1); user-select: none; line-height: 1.45; }
.faq-chevron { width: 18px; height: 18px; color: var(--text-3); flex-shrink: 0; transition: transform .2s; margin-top: 2px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--blue-text); }
.faq-item.open .faq-question { color: var(--white); }
.faq-answer { display: none; padding: 0 0 20px 0; font-size: 14px; color: var(--text-2); line-height: 1.78; max-width: 680px; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   UPLOAD / TRY SECTION
   ============================================================ */
.try-section { padding: 80px 24px; background: var(--bg); text-align: center; }
.try-section h2 { font-size: 36px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; margin-bottom: 12px; }
.try-desc { font-size: 16px; color: var(--text-2); max-width: 500px; margin: 0 auto 36px; line-height: 1.7; }
.upload-zone { max-width: 560px; margin: 0 auto; border: 1.5px dashed rgba(59,130,246,0.35); border-radius: var(--r-xl); padding: 48px 32px 36px; background: rgba(15,23,41,0.6); cursor: pointer; transition: border-color .2s, background .2s; }
.upload-zone:hover { border-color: rgba(59,130,246,0.7); background: rgba(29,78,216,0.07); }
.upload-zone-icon { width: 52px; height: 52px; background: rgba(37,99,235,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--blue-text); }
.upload-zone h3 { font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.upload-zone p { font-size: 14px; color: var(--text-2); max-width: 340px; margin: 0 auto 24px; line-height: 1.6; }
.upload-zone-btns { display: flex; gap: 10px; justify-content: center; margin-bottom: 16px; flex-wrap: wrap; }
.btn-upload { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; background: var(--blue); color: var(--white); font-size: 14px; font-weight: 600; border: none; border-radius: var(--r); cursor: pointer; font-family: var(--font); transition: background .15s; }
.btn-upload:hover { background: var(--blue-bright); }
.btn-camera { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; background: transparent; border: 1px solid var(--border); color: var(--text-1); font-size: 14px; font-weight: 500; border-radius: var(--r); cursor: pointer; font-family: var(--font); transition: border-color .15s; }
.btn-camera:hover { border-color: var(--text-3); }
.upload-hint { font-size: 12px; color: var(--text-3); }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 18px; font-size: 13px; color: var(--text-2); }
.secure-note svg { color: var(--blue-text); flex-shrink: 0; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-section { padding: 88px 24px; background: var(--bg2); text-align: center; }
.final-cta-inner { max-width: 680px; margin: 0 auto; }
.final-cta-section h2 { font-size: 38px; font-weight: 800; color: var(--white); letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 18px; }
.final-cta-section p { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 36px; }
.final-cta-btns { display: flex; gap: 12px; justify-content: center; margin-bottom: 22px; flex-wrap: wrap; }
.final-cta-note { font-size: 13px; color: var(--text-3); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-full { background: var(--bg); border-top: 1px solid var(--border); }
.footer-full-inner { max-width: 1200px; margin: 0 auto; }
.footer-trust-bar { padding: 28px 24px; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-trust-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.footer-trust-links a { font-size: 13px; color: var(--text-2); transition: color .15s; }
.footer-trust-links a:hover { color: var(--white); }
.footer-sep { color: var(--text-3); font-size: 13px; }
.footer-trust-note { font-size: 13px; color: var(--text-3); }
.footer-trust-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.trust-badge { font-size: 11px; font-weight: 600; color: var(--blue-text); background: rgba(37,99,235,0.1); border: 1px solid rgba(59,130,246,0.2); border-radius: 20px; padding: 4px 12px; }
.footer-bottom { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--white); }
.footer-logo-icon { width: 24px; height: 24px; background: linear-gradient(135deg, #1d4ed8, #3b82f6); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.footer-logo-icon svg { color: #fff; width: 12px; height: 12px; }
.footer-copy { font-size: 12px; color: var(--text-3); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--text-3); transition: color .15s; }
.footer-links a:hover { color: var(--white); }

/* ============================================================
   OTHER PAGES
   ============================================================ */
.page-hero { padding: 100px 24px 60px; text-align: center; background: var(--bg); }
.page-hero h1 { font-size: 44px; font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 14px; }
.page-hero p { font-size: 16px; color: var(--text-2); max-width: 460px; margin: 0 auto; line-height: 1.7; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; padding: 0 24px 80px; }
.price-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r-xl); padding: 32px 28px; position: relative; }
.price-card.popular { border-color: var(--blue); box-shadow: 0 0 30px rgba(37,99,235,0.2); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 4px 14px; border-radius: 12px; text-transform: uppercase; white-space: nowrap; }
.price-plan { font-size: 14px; font-weight: 600; color: var(--blue-text); margin-bottom: 10px; }
.price-amount { font-size: 44px; font-weight: 800; color: var(--white); line-height: 1; }
.price-amount sup { font-size: 22px; vertical-align: top; margin-top: 8px; }
.price-amount sub { font-size: 15px; color: var(--text-2); font-weight: 400; }
.price-desc { font-size: 13px; color: var(--text-2); margin: 12px 0 24px; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-1); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.price-features li svg { color: #4ade80; flex-shrink: 0; margin-top: 1px; }
.btn-plan { display: block; width: 100%; padding: 12px; background: rgba(37,99,235,0.15); border: 1px solid rgba(59,130,246,0.3); color: var(--blue-text); font-size: 14px; font-weight: 600; border-radius: var(--r); cursor: pointer; font-family: var(--font); transition: background .15s; text-align: center; }
.btn-plan:hover { background: rgba(37,99,235,0.25); }
.price-card.popular .btn-plan { background: var(--blue); border-color: var(--blue); color: #fff; }
.price-card.popular .btn-plan:hover { background: var(--blue-bright); }

/* Simple / contact / privacy pages */
.simple-page { padding-top: 100px; padding-bottom: 80px; max-width: 740px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.simple-page h1 { font-size: 38px; font-weight: 800; color: var(--white); margin-bottom: 16px; letter-spacing: -0.5px; }
.simple-page .lead { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 40px; }
.simple-page h2 { font-size: 20px; font-weight: 700; color: var(--white); margin: 32px 0 12px; }
.simple-page p { font-size: 14px; color: var(--text-2); line-height: 1.78; margin-bottom: 16px; }
.simple-page ul { margin: 0 0 16px 20px; }
.simple-page li { font-size: 14px; color: var(--text-2); line-height: 1.78; margin-bottom: 6px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13px; font-weight: 500; color: var(--text-1); margin-bottom: 7px; }
.form-row input, .form-row textarea { width: 100%; padding: 11px 14px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--r); font-size: 14px; font-family: var(--font); color: var(--text-1); outline: none; transition: border-color .15s; }
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-3); }
.form-row input:focus, .form-row textarea:focus { border-color: var(--blue-text); }
.form-row textarea { resize: vertical; min-height: 120px; }
.btn-submit { padding: 12px 28px; background: var(--blue); color: #fff; font-size: 15px; font-weight: 600; border: none; border-radius: var(--r); cursor: pointer; font-family: var(--font); transition: background .15s; }
.btn-submit:hover { background: var(--blue-bright); }

/* Privacy policy styles */
.policy-page { max-width: 780px; }
.policy-header { margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.policy-header h1 { font-size: 44px; font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 10px; line-height: 1.1; }
.policy-effective { font-size: 13px; color: var(--blue-text); font-weight: 500; margin-bottom: 16px; }
.policy-body { display: flex; flex-direction: column; gap: 0; }
.policy-section { padding: 36px 0; border-bottom: 1px solid var(--border); }
.policy-section:last-of-type { border-bottom: none; }
.policy-section h2 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 16px; display: flex; align-items: baseline; gap: 10px; }
.policy-num { color: var(--blue-text); font-size: 16px; font-weight: 700; }
.policy-section p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 14px; }
.policy-section p:last-child { margin-bottom: 0; }
.policy-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.policy-list li { display: flex; flex-direction: column; gap: 3px; padding: 14px 16px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r); }
.policy-list-label { font-size: 13px; font-weight: 700; color: var(--text-1); }
.policy-list-text { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.policy-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 12px 0 16px; }
.policy-checklist li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--text-2); line-height: 1.65; }
.policy-check { width: 20px; height: 20px; flex-shrink: 0; background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green); margin-top: 1px; }
.policy-callout { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: rgba(37,99,235,0.08); border: 1px solid rgba(59,130,246,0.2); border-radius: var(--r); font-size: 14px; font-weight: 600; color: var(--blue-text); margin-top: 4px; }
.policy-link { color: var(--blue-text); font-weight: 500; transition: color .15s; }
.policy-link:hover { color: var(--white); text-decoration: underline; }
.policy-contact-card { display: flex; align-items: center; gap: 16px; margin-top: 36px; padding: 20px 22px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r-lg); }
.policy-contact-icon { width: 42px; height: 42px; flex-shrink: 0; background: rgba(37,99,235,0.15); border: 1px solid rgba(59,130,246,0.2); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--blue-text); }
.policy-contact-label { font-size: 12px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.policy-contact-email { font-size: 15px; font-weight: 600; color: var(--blue-text); transition: color .15s; }
.policy-contact-email:hover { color: var(--white); }

/* Search page */
.search-page { padding-top: 60px; min-height: 100vh; }
.search-topbar { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 14px 24px; }
.search-topbar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.search-input-wrap { position: relative; flex: 1; max-width: 480px; min-width: 200px; }
.search-input { width: 100%; padding: 10px 16px 10px 40px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 24px; font-size: 14px; font-family: var(--font); color: var(--text-1); outline: none; transition: border-color .15s; }
.search-input:focus { border-color: var(--blue-text); }
.search-input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-3); pointer-events: none; }
.search-filter-btn { display: flex; align-items: center; gap: 7px; padding: 9px 16px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 24px; font-size: 13px; font-weight: 500; color: var(--text-1); cursor: pointer; font-family: var(--font); transition: border-color .15s; white-space: nowrap; }
.search-filter-btn:hover { border-color: var(--blue-text); }
.search-layout { max-width: 1200px; margin: 0 auto; padding: 24px; display: grid; grid-template-columns: 200px 1fr; gap: 24px; }
.sidebar h3 { font-size: 11px; font-weight: 600; color: var(--text-3); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.sidebar-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 13px; color: var(--text-2); cursor: pointer; }
.sidebar-item:hover { color: var(--white); }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.result-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--r-lg); overflow: hidden; transition: border-color .2s, transform .2s; }
.result-card:hover { border-color: rgba(59,130,246,0.4); transform: translateY(-2px); }
.result-img-wrap { position: relative; overflow: hidden; }
.result-img { width: 100%; height: 190px; object-fit: cover; transition: transform .3s; display: block; }
.result-card:hover .result-img { transform: scale(1.04); }
.match-badge { position: absolute; top: 10px; left: 10px; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; color: #fff; letter-spacing: 0.5px; }
.match-high { background: rgba(37,99,235,0.85); }
.match-med { background: rgba(0,0,0,0.65); }
.match-low { background: rgba(100,116,139,0.8); }
.result-info { padding: 12px 14px; display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.result-title { font-size: 13px; font-weight: 600; color: var(--text-1); margin-bottom: 3px; }
.result-source { font-size: 12px; color: var(--text-3); }
.result-ext-link { width: 28px; height: 28px; flex-shrink: 0; border: 1px solid var(--border); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--text-3); transition: all .15s; }
.result-ext-link:hover { border-color: var(--blue-text); color: var(--blue-text); }
.result-ext-link svg { width: 13px; height: 13px; }
.load-more-wrap { text-align: center; padding: 32px 0 48px; }
.btn-load-more { padding: 11px 28px; background: transparent; border: 1px solid var(--border); border-radius: 24px; font-size: 14px; font-weight: 500; color: var(--text-1); cursor: pointer; font-family: var(--font); transition: border-color .15s; }
.btn-load-more:hover { border-color: var(--blue-text); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { gap: 0; }
  .nav-link { padding: 7px 9px; font-size: 13px; }
  .btn-signin { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 44px; }
  .hero-left { align-items: center; }
  .hero-sub { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-trust { justify-content: center; }
  .face-scan-wrap { width: 280px; height: 280px; }
  .what-inner { grid-template-columns: 1fr; gap: 36px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before { display: none; }
  .how-results-list { grid-template-columns: 1fr 1fr; }
  .vs-grid { grid-template-columns: 1fr; }
  .uses-grid { grid-template-columns: repeat(2, 1fr); }
  .does-grid { grid-template-columns: 1fr; }
  .handled-inner { grid-template-columns: 1fr; gap: 40px; }
  .handled-visual { order: -1; }
  .responsible-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .search-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { height: 56px; }
  .nav-inner { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-logo { font-size: 14px; margin-right: 0; }
  .nav-icon-btn { display: none; }
  .btn-get-started { padding: 8px 13px; font-size: 13px; }
  .nav-hamburger { display: flex; }
  .mobile-nav { top: 56px; }

  .hero { padding-top: 84px; padding-bottom: 52px; }
  .hero-inner { padding: 0 16px; }
  .hero-h1 { font-size: 36px; letter-spacing: -0.8px; }
  .hero-sub { font-size: 15px; }
  .face-scan-wrap { width: 240px; height: 240px; }
  .hero-stats { gap: 20px; }
  .hero-stat-val { font-size: 22px; }

  .what-section, .how-section, .vs-section, .uses-section,
  .does-section, .handled-section, .responsible-section,
  .why-section, .faq-section, .final-cta-section, .try-section { padding: 56px 16px; }

  .what-content h2, .handled-content h2 { font-size: 26px; }
  .section-title { font-size: 26px; }
  .section-desc { font-size: 14px; margin-bottom: 36px; }
  .how-grid { grid-template-columns: 1fr; }
  .how-results-list { grid-template-columns: 1fr; }
  .how-results-detail { padding: 22px 18px; }
  .uses-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .final-cta-section h2 { font-size: 28px; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .final-cta-btns .btn-primary, .final-cta-btns .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
  .try-section h2 { font-size: 28px; }
  .upload-zone { padding: 36px 18px 28px; margin: 0; }
  .upload-zone-btns { flex-direction: column; align-items: center; }
  .btn-upload, .btn-camera { width: 100%; max-width: 280px; justify-content: center; }
  .faq-question { font-size: 14px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .footer-trust-bar { padding: 20px 16px; }
  .page-hero { padding: 86px 16px 48px; }
  .page-hero h1 { font-size: 32px; }
  .pricing-grid { padding: 0 16px 60px; }
  .simple-page { padding-top: 86px; padding-left: 16px; padding-right: 16px; }
  .simple-page h1 { font-size: 30px; }
  .policy-header h1 { font-size: 30px; }
  .policy-section h2 { font-size: 17px; }
  .policy-section { padding: 26px 0; }
  .search-topbar-inner { gap: 10px; }
  .search-input-wrap { max-width: 100%; }
  .results-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (max-width: 640px) {
  .hero-h1 { font-size: 30px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
  .hero-trust { font-size: 11px; }
  .face-scan-wrap { width: 210px; height: 210px; }
  .face-detected-badge { font-size: 11px; padding: 5px 10px; right: -10px; }
  .results-grid { grid-template-columns: 1fr; }
  .footer-trust-badges { gap: 6px; }
  .trust-badge { font-size: 10px; padding: 3px 9px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 26px; }
  .hero-stat-val { font-size: 20px; }
  .hero-stats { gap: 16px; }
  .face-scan-wrap { width: 180px; height: 180px; }
  .section-title { font-size: 22px; }
  .what-content h2, .handled-content h2 { font-size: 21px; }
  .final-cta-section h2 { font-size: 23px; }
  .try-section h2 { font-size: 23px; }
  .how-card, .use-card, .why-card { padding: 20px 16px; }
  .does-card { padding: 22px 16px; }
  .responsible-card { padding: 22px 16px; }
  .faq-question { font-size: 13px; }
  .faq-answer { font-size: 13px; }
  .handled-shield-circle { width: 150px; height: 150px; }
  .handled-shield-circle svg { width: 52px; height: 52px; }
  .footer-links { gap: 10px; }
  .footer-links a { font-size: 11px; }
  .nav-logo { font-size: 13px; }
  .btn-get-started { padding: 7px 11px; font-size: 12px; }
}

@supports (padding: max(0px)) {
  .navbar { padding-left: max(0px, env(safe-area-inset-left)); padding-right: max(0px, env(safe-area-inset-right)); }
  .footer-full { padding-bottom: max(0px, env(safe-area-inset-bottom)); }
}
@media (hover: none) {
  .result-card:hover { transform: none; }
  .result-card:active { transform: scale(0.98); }
}

/* Policy more links row */
.policy-more-links {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 18px 22px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
}
.policy-more-label { font-size: 13px; font-weight: 600; color: var(--text-3); }
.policy-more-link { font-size: 13px; color: var(--blue-text); font-weight: 500; transition: color .15s; }
.policy-more-link:hover { color: var(--white); text-decoration: underline; }
.policy-more-sep { color: var(--text-3); font-size: 13px; }

@media (max-width: 480px) {
  .policy-more-links { gap: 8px; }
  .policy-more-label { width: 100%; }
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */
.about-lead-card {
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  margin-bottom: 32px;
}
.about-lead-card p {
  font-size: 18px; font-weight: 500; color: var(--text-1);
  line-height: 1.7; margin: 0;
}
.about-grid {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 32px;
}
.about-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.about-item:last-child { border-bottom: none; }
.about-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--r); margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-text);
}
.about-item-icon svg { width: 18px; height: 18px; }
.about-item-title {
  font-size: 15px; font-weight: 700; color: var(--white);
  margin-bottom: 6px;
}
.about-item-text {
  font-size: 14px; color: var(--text-2); line-height: 1.72;
}
.about-contact-row {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 24px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--r-lg); margin-bottom: 32px;
}
.about-contact-text {
  font-size: 14px; color: var(--text-2);
}
.about-contact-email {
  font-size: 15px; font-weight: 600; color: var(--blue-text);
  transition: color .15s;
}
.about-contact-email:hover { color: var(--white); }

@media (max-width: 480px) {
  .about-lead-card { padding: 20px; }
  .about-lead-card p { font-size: 16px; }
  .about-item { gap: 14px; padding: 20px 0; }
  .about-contact-row { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ============================================================
   CSR PAGE
   ============================================================ */
.policy-section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.csr-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-text);
}
@media (max-width: 480px) {
  .csr-icon { width: 32px; height: 32px; }
  .csr-icon svg { width: 16px; height: 16px; }
}

/* ============================================================
   DEVICES SECTION — COMPLETE FIX
   ============================================================ */
.devices-section {
  padding: 80px 24px;
  background: var(--bg2);
}
.devices-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Tabs row */
.devices-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 28px;
}
.device-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  font-family: var(--font);
  transition: all .15s;
  white-space: nowrap;
  line-height: 1;
}
.device-tab svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  display: block;
}
.device-tab:hover {
  border-color: rgba(59,130,246,0.4);
  color: var(--text-1);
}
.device-tab.active {
  background: rgba(37,99,235,0.15);
  border-color: rgba(59,130,246,0.45);
  color: var(--blue-text);
}

/* Panels */
.device-panel {
  display: none;
}
.device-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Guide cards */
.device-guide-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: 26px 24px;
}
.device-guide-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.4;
}
.device-guide-card h4 svg {
  width: 16px !important;
  height: 16px !important;
  color: var(--blue-text);
  flex-shrink: 0;
}

/* Step list */
.device-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}
.device-steps li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}
.device-steps li:last-child {
  border-bottom: none;
}
.device-step-bullet {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: rgba(37,99,235,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-text);
  margin-top: 1px;
}

/* Tip box */
.device-tip {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: var(--r);
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.6;
}
.device-tip strong { color: var(--blue-text); }

/* Responsive */
@media (max-width: 1024px) {
  .device-panel.active { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .devices-section { padding: 56px 16px; }
  .devices-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .devices-tabs::-webkit-scrollbar { display: none; }
  .device-tab { flex-shrink: 0; }
  .device-guide-card { padding: 20px 16px; }
}
@media (max-width: 480px) {
  .device-guide-card h4 { font-size: 13px; }
  .device-steps li { font-size: 12px; }
}

/* ============================================================
   BRAND LOGO — UPDATED STYLES
   ============================================================ */

/* Navbar brand logo */
.nav-logo {
  display: flex;
  align-items: center;
  margin-right: 36px;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}
.brand-logo-svg {
  display: block;
  max-width: 148px;
  height: auto;
}

/* Remove old nav-logo-icon styles (replaced by SVG) */
.nav-logo .nav-logo-icon { display: none; }

/* Mobile nav logo inside drawer */
.mobile-nav-logo {
  padding: 8px 14px 4px;
  display: flex;
  align-items: center;
}
.mobile-nav-logo svg { display: block; }

/* Footer brand logo */
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-brand-logo svg { display: block; flex-shrink: 0; }
.footer-brand-logo span {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  font-family: 'DM Sans', var(--font);
  letter-spacing: -0.2px;
}

/* Hide old footer-logo element if still present */
.footer-logo { display: none; }
.footer-logo-icon { display: none; }

/* Responsive logo scaling */
@media (max-width: 1024px) {
  .brand-logo-svg { max-width: 130px; }
  .nav-logo { margin-right: 24px; }
}
@media (max-width: 768px) {
  .brand-logo-svg { max-width: 110px; height: 29px; }
  .nav-logo { margin-right: 0; }
}
@media (max-width: 480px) {
  .brand-logo-svg { max-width: 96px; height: 25px; }
}

/* ============================================================
   KEY FEATURES SECTION
   ============================================================ */
.features-section {
  padding: 80px 24px;
  background: var(--bg2);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color .2s, transform .15s;
}
.feature-card:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-text);
  margin-bottom: 18px;
}
.feature-icon svg {
  width: 20px;
  height: 20px;
}
.feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.68;
}

/* ============================================================
   WHO USES SECTION
   ============================================================ */
.who-section {
  padding: 80px 24px;
  background: var(--bg);
}
.who-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.who-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color .2s;
}
.who-card:hover { border-color: rgba(59,130,246,0.35); }
.who-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-text);
  margin-bottom: 18px;
}
.who-card-icon svg { width: 20px; height: 20px; }
.who-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.who-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.68;
}

/* ============================================================
   PRIVACY & RESPONSIBLE USE SECTION
   ============================================================ */
.privacy-section {
  padding: 80px 24px;
  background: var(--bg2);
}
.privacy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.privacy-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  line-height: 1.2;
}
.privacy-row {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.privacy-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.privacy-row-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 7px;
}
.privacy-row-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.72;
}
.privacy-shield {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 16px;
}
.privacy-shield-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.privacy-shield-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1D4ED8, #2563EB);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 70px rgba(37,99,235,0.35);
  position: relative;
}
.privacy-shield-circle::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1.5px solid rgba(37,99,235,0.22);
}
.privacy-shield-circle::after {
  content: '';
  position: absolute;
  inset: -36px;
  border-radius: 50%;
  border: 1px solid rgba(37,99,235,0.1);
}
.privacy-shield-circle svg { color: var(--white); }
.privacy-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.privacy-card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
}
.privacy-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  margin-top: 4px;
}
.privacy-card-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}
.privacy-card-text strong {
  color: var(--text-1);
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE — FEATURES / WHO / PRIVACY
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid      { grid-template-columns: repeat(2, 1fr); }
  .privacy-inner { grid-template-columns: 1fr; gap: 40px; }
  .privacy-shield { justify-content: flex-start; }
}
@media (max-width: 768px) {
  .features-section, .who-section, .privacy-section { padding: 56px 16px; }
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .who-grid      { grid-template-columns: 1fr; gap: 12px; }
  .privacy-content h2 { font-size: 26px; }
  .privacy-shield-circle { width: 150px; height: 150px; }
  .privacy-shield-circle svg { width: 52px; height: 52px; }
}
@media (max-width: 480px) {
  .feature-card  { padding: 20px 16px; }
  .who-card      { padding: 20px 16px; }
}
