@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/PlusJakartaSans.woff2') format('woff2');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --f: 'Plus Jakarta Sans', sans-serif;
  --navy: #0c1e35;
  --navy2: #163352;
  --blue: #1d6fce;
  --blue2: #1f6cc2;
  --blue-l: #e8f1fb;
  --blue-ll: #f4f8fe;
  --text: #1a2535;
  --text2: #4a5568;
  --text3: #8896a8;
  --border: #dde5ef;
  --bg: #f0f4f9;
  --white: #ffffff;
  --red: #c0392b;
  --red-l: #fef2f2;
  --orange: #c05621;
  --orange-l: #fff7ed;
  --green: #1a7a45;
  --green-l: #f0faf4;
  --sh: 0 1px 3px rgba(12,30,53,.07), 0 2px 10px rgba(12,30,53,.04);
  --sh2: 0 4px 20px rgba(12,30,53,.10), 0 1px 4px rgba(12,30,53,.06);
  --hdr-bg: #1f3a5c;
  --hdr-bg2: #264a73;
  --hdr-muted: rgba(255,255,255,.7);
  --hdr-input: rgba(255,255,255,.12);
  --hdr-input-border: rgba(255,255,255,.18);
}

html { background: var(--bg); color: var(--text); font-family: var(--f); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body { min-height: 100dvh; display: flex; flex-direction: column; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: disc; padding-left: 20px; margin-bottom: 1rem; }
ul li { margin-bottom: 6px; }

/* ── Header ── */
.hdr {
  background: var(--hdr-bg);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(15,30,50,.18);
}
.hdr-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 16px;
  height: 58px;
  display: flex; align-items: center; gap: 16px;
}

.logo {
  font-size: 17px; font-weight: 800; color: white;
  white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: 9px;
  letter-spacing: -.3px;
}
.logo img {
  width: 30px; height: auto;
  border-radius: 6px;
  flex-shrink: 0;
}

.hdr-search {
  flex: 1; max-width: 460px;
  display: flex; align-items: center;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 8px;
  transition: border-color .15s, background .15s;
}
.hdr-search:focus-within {
  border-color: var(--blue);
  background: rgba(255,255,255,.16);
}
.hdr-search input {
  flex: 1;
  height: 38px;
  padding: 0 12px;
  border: none;
  background: transparent;
  color: white;
  font-family: var(--f); font-size: 14px;
  outline: none;
}
.hdr-search input::placeholder { color: rgba(255,255,255,.45); }
.hdr-search button {
  height: 30px; margin-right: 4px;
  padding: 0 14px;
  background: var(--blue);
  color: white;
  border: none; border-radius: 6px;
  font-family: var(--f); font-size: 13px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
  transition: background .15s;
}
.hdr-search button:hover { background: #1560b5; }
.hdr-search svg { width: 14px; height: 14px; }

.hdr-nav { display: flex; gap: 2px; margin-left: auto; }
.hdr-nav a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: 7px 12px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.hdr-nav a:hover { color: white; background: rgba(255,255,255,.08); text-decoration: none; }

.hdr-burger {
  display: none;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px;
  color: white;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-left: 12px;
}

.hdr-drawer { display: none; background: var(--hdr-bg); border-top: 1px solid rgba(255,255,255,.08); padding: 8px 16px 14px; }
.hdr-drawer.open { display: block; }
.hdr-drawer a { display: block; padding: 11px 12px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.7); border-radius: 6px; }
.hdr-drawer a:hover { color: white; background: rgba(255,255,255,.08); text-decoration: none; }

@media (max-width: 720px) {
  .hdr-search { max-width: none; }
  .hdr-nav { display: none; }
  .hdr-burger { display: flex; }
}
@media (max-width: 480px) {
  .logo span:last-child { display: none; }
}

/* ── Main ── */
main { flex: 1; }

/* ── Page grid ── */
.page { max-width: 1160px; margin: 0 auto; padding: 20px 16px 80px; display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }
.main { min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.side { display: flex; flex-direction: column; gap: 16px; }


/* ── Breadcrumb ── */
.bc { font-size: 12px; color: var(--text3); display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.bc a { color: var(--text3); }
.bc a:hover { color: var(--blue); text-decoration: none; }
.bc-sep { color: var(--border); margin: 0 2px; }

/* ── HERO ── */
.hero { background: var(--white); border-radius: 12px; box-shadow: var(--sh2); overflow: hidden; }
.hero-head { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); padding: 22px 20px 18px; position: relative; overflow: hidden; }
.hero-head::before { content:''; position:absolute; right:-50px; top:-60px; width:220px; height:220px; border-radius:50%; background:rgba(29,111,206,.18); pointer-events:none; }
.hero-head::after  { content:''; position:absolute; right:20px; bottom:-40px; width:120px; height:120px; border-radius:50%; background:rgba(255,255,255,.04); pointer-events:none; }
.hero-lbl { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.hero-num { font-size: 34px; font-weight: 800; color: white; letter-spacing: -.5px; line-height: 1; margin-bottom: 14px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.htag { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.htag-blue   { background: rgba(29,111,206,.25); color: #7cb9f5; border: 1px solid rgba(29,111,206,.3); }
.htag-warn   { background: rgba(192,86,33,.3);   color: #f5a86a; border: 1px solid rgba(192,86,33,.35); }
.htag-danger { background: rgba(192,57,43,.3);   color: #f08080; border: 1px solid rgba(192,57,43,.35); }
.htag-safe   { background: rgba(26,122,69,.3);   color: #6ed4a0; border: 1px solid rgba(26,122,69,.35); }
.htag-low    { background: rgba(100,100,110,.2); color: #a0a0b0; border: 1px solid rgba(100,100,110,.25); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.hstat { padding: 15px 10px; text-align: center; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hstat:last-child { border-right: none; }
.hstat-num { font-size: 19px; font-weight: 800; color: var(--navy); line-height: 1.15; letter-spacing: -.3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hstat-num.accent { color: var(--blue); }
.hstat-num-date { font-size: 14px; letter-spacing: -.1px; }
.hstat-lbl { font-size: 11px; color: var(--text3); margin-top: 3px; font-weight: 500; line-height: 1.3; }
@media (max-width: 480px) {
  .hstat { padding: 12px 6px; }
  .hstat-num { font-size: 15px; }
  .hstat-num-date { font-size: 12px; }
  .hstat-lbl { font-size: 10px; }
}
.report-scam { display: flex; align-items: center; justify-content: center; gap: 7px; width: calc(100% - 32px); margin: 16px; height: 44px; background: var(--orange-l); color: var(--orange); border: 1.5px solid #f5c489; border-radius: 9px; font-family: var(--f); font-size: 14px; font-weight: 700; cursor: pointer; transition: background .15s, border-color .15s; -webkit-tap-highlight-color: transparent; }
.report-scam:hover { background: #ffe9cf; border-color: var(--orange); }
.report-scam:active { transform: scale(.99); }

/* ── Section card ── */
.card { background: var(--white); border-radius: 10px; box-shadow: var(--sh); overflow: hidden; border: 1px solid var(--border); }
.card-h { padding: 14px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card-title { font-size: 15px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.card-title-accent { width: 3px; height: 16px; background: var(--blue); border-radius: 2px; flex-shrink: 0; }
.card-b { padding: 16px 18px; }

/* ── Comments ── */
.comment-list { display: flex; flex-direction: column; gap: 14px; }
.comment { border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; background: var(--white); transition: border-color .15s, box-shadow .15s; }
.comment:hover { border-color: #c5d4e6; box-shadow: var(--sh); }
.comment-head { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.comment-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), #1457a8); color: white; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.comment-meta { flex: 1; min-width: 0; }
.comment-author { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.comment-date { font-size: 12px; color: var(--text3); margin-top: 1px; }
.comment-body { font-size: 14px; color: var(--text); line-height: 1.6; margin: 0; }
.like-form { margin-left: auto; flex-shrink: 0; }
.like-btn { background: none; border: 1px solid var(--border); border-radius: 20px; padding: 2px 10px; font-size: 13px; color: var(--text3); cursor: pointer; display: inline-flex; align-items: center; gap: 4px; transition: border-color .15s, color .15s, background .15s; line-height: 1.5; font-family: var(--f); }
.like-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-ll); }
.like-btn.liked { border-color: var(--blue); color: var(--blue); background: var(--blue-ll); cursor: default; }
.empty-rep { text-align: center; padding: 36px 20px; color: var(--text3); }

/* ── Inline CTA ── */
.cta-inline { background: linear-gradient(135deg, var(--blue) 0%, #1457a8 100%); padding: 16px 18px; border-radius: 10px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin: 2px 0; }
.cta-inline.cta-hidden { display: none; }
.cta-inline p { color: rgba(255,255,255,.9); font-size: 14px; line-height: 1.4; margin: 0; }
.cta-inline strong { color: white; }
.cta-btn { height: 38px; padding: 0 18px; background: white; color: var(--blue); border: none; border-radius: 6px; font-family: var(--f); font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: background .15s; }
.cta-btn:hover { background: var(--blue-l); }

/* ── Comment pagination ── */
.comment-pagination { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.cp-link { font-size: 13px; font-weight: 700; color: var(--blue); white-space: nowrap; }
.cp-link:hover { text-decoration: underline; }
.cp-link.cp-disabled { color: var(--text3); cursor: default; }
.cp-link.cp-disabled:hover { text-decoration: none; }
.cp-status { font-size: 12px; color: var(--text3); }
.pagenum-list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.pagenum { font-size: 13px; font-weight: 600; color: var(--blue); padding: 4px 9px; border-radius: 6px; }
.pagenum:hover { background: var(--blue-l); text-decoration: none; }
.pagenum-current { background: var(--blue); color: white; font-weight: 700; }
.pagenum-ellipsis { color: var(--text3); font-size: 13px; padding: 0 2px; }
@media (max-width: 720px) {
  .comment-pagination { flex-direction: column; gap: 12px; }
}

/* ── Google search ── */
.google-search { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 15px 18px; background: var(--white); border: 1.5px solid var(--border); border-radius: 10px; box-shadow: var(--sh); font-family: var(--f); font-size: 14px; font-weight: 600; color: var(--text2); cursor: pointer; text-align: center; line-height: 1.4; transition: border-color .15s, color .15s, background .15s; }
.google-search:hover { border-color: var(--blue); color: var(--navy); background: var(--blue-ll); text-decoration: none; }
.google-search svg { flex-shrink: 0; }

/* ── Report form ── */
.rform { display: flex; flex-direction: column; gap: 13px; }
.f-lbl { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 5px; display: block; }
.f-ctrl { width: 100%; border: 1.5px solid var(--border); border-radius: 6px; font-family: var(--f); font-size: 14px; color: var(--text); background: var(--white); outline: none; transition: border-color .15s; }
.f-ctrl:focus { border-color: var(--blue); }
textarea.f-ctrl { padding: 10px 12px; resize: vertical; min-height: 80px; line-height: 1.5; }
input.f-ctrl { height: 40px; padding: 0 12px; }
.btn-sub { height: 42px; padding: 0 24px; background: var(--blue); color: white; border: none; border-radius: 6px; font-family: var(--f); font-size: 15px; font-weight: 700; cursor: pointer; align-self: flex-start; transition: background .15s; }
.btn-sub:hover { background: #1560b5; }
.f-success { display: flex; align-items: center; gap: 10px; background: var(--green-l); border: 1px solid #9edcb8; border-radius: 6px; padding: 12px 14px; font-size: 14px; color: var(--green); font-weight: 600; }

/* ── FAQ accordion ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-btn { width: 100%; background: none; border: none; cursor: pointer; padding: 13px 4px; text-align: left; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; font-family: var(--f); font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.35; }
.faq-btn:hover { color: var(--blue); }
.faq-chev { flex-shrink: 0; transition: transform .2s; color: var(--blue); margin-top: 2px; }
.faq-chev.open { transform: rotate(180deg); }
.faq-ans { display: none; padding: 0 4px 13px; font-size: 14px; color: var(--text2); line-height: 1.7; }
.faq-ans.open { display: block; }

/* ── SEO text ── */
.seo { font-size: 14px; color: var(--text2); line-height: 1.8; }
.seo p { margin-bottom: 12px; }
.seo p:last-child { margin-bottom: 0; }
.seo strong { color: var(--navy); }
.seo h3 { font-size: 15px; color: var(--navy); margin: 16px 0 8px; }

/* ── Format table ── */
.fmt-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.fmt-table tr { border-bottom: 1px solid var(--border); }
.fmt-table tr:last-child { border-bottom: none; }
.fmt-table td { padding: 11px 16px; }
.fmt-table td:first-child { color: var(--text2); font-weight: 500; width: 50%; }
.fmt-table td:last-child { text-align: right; }
.fmt-num { font-family: monospace; font-size: 14px; font-weight: 600; color: var(--navy); background: var(--bg); border: 1px solid var(--border); border-radius: 5px; padding: 4px 10px; cursor: pointer; user-select: all; display: inline-block; transition: border-color .15s, color .15s; }
.fmt-num:hover { border-color: var(--blue); color: var(--blue); }

/* ── Sidebar ── */
.w-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text3); margin-bottom: 12px; }
.sw { display: flex; flex-direction: column; gap: 8px; }
.sw form { display: flex; flex-direction: column; gap: 8px; }
.sw input { width: 100%; height: 40px; padding: 0 13px; border: 1.5px solid var(--border); border-radius: 6px; font-family: var(--f); font-size: 14px; color: var(--text); outline: none; background: var(--bg); transition: border-color .15s; }
.sw input:focus { border-color: var(--blue); background: var(--white); }
.sw button { height: 40px; padding: 0 16px; background: var(--blue); color: white; border: none; border-radius: 6px; font-family: var(--f); font-size: 14px; font-weight: 700; cursor: pointer; width: 100%; transition: background .15s; }
.sw button:hover { background: #1560b5; }
.stat-r { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.stat-r:last-child { border-bottom: none; }
.stat-r span:last-child { font-weight: 700; color: var(--navy); }
.risk-mini { font-size: 12px; font-weight: 700; padding: 2px 9px; border-radius: 20px; }
.risk-mini.safe   { background: var(--green-l);  color: var(--green);  border: 1px solid #a0ddb8; }
.risk-mini.medium { background: var(--orange-l); color: var(--orange); border: 1px solid #f5d0a0; }
.risk-mini.danger { background: var(--red-l);    color: var(--red);    border: 1px solid #f5c0c0; }
.risk-mini.low { background: #f0f0f2; color: #6b6b7a; border: 1px solid #d0d0d8; }
.side-num-list { display: flex; flex-direction: column; gap: 8px; }
.side-num-list a { font-family: monospace; font-size: 14px; font-weight: 600; color: var(--blue); }
.side-num-list a:hover { text-decoration: underline; }
.mobile-summary { display: none; }

.page-full { display: block; padding-top: 0; }
.num-search-widget { padding: 28px; }
.num-search-widget .card-b { display: flex; flex-direction: column; gap: 20px; }
.num-search-widget .w-title { margin-bottom: 0; }
.num-search-widget .hero-search { box-shadow: var(--sh); margin: 0; max-width: none; }
.num-search-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px 20px; }
.num-search-grid a { font-size: 15px; font-weight: 600; color: var(--blue); }
.num-search-grid a:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .num-search-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Footer ── */
.ftr {
  background: var(--navy);
  color: rgba(255,255,255,.5);
  padding: 40px 16px 0;
  margin-top: auto;
}
.ftr-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.ftr-col h4 {
  color: #e8edf2;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px;
}
.ftr-col a {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: 14px;
  padding: 5px 0;
  transition: color .15s;
}
.ftr-col a:hover { color: #e8edf2; text-decoration: none; }
.ftr-bottom {
  max-width: 1160px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap; gap: 8px;
}
.ftr-bottom a { color: rgba(255,255,255,.5); transition: color .15s; }
.ftr-bottom a:hover { color: #e8edf2; text-decoration: none; }

@media (max-width: 600px) {
  .ftr-inner { grid-template-columns: 1fr; gap: 24px; }
  .ftr-bottom { flex-direction: column; text-align: center; }
}

/* ── Dev notice ── */
.dev-notice { background: #fff3cd; border: 1px solid #ffc107; padding: 8px 16px; border-radius: 6px; margin-bottom: 20px; font-size: 14px; font-weight: 500; max-width: 1160px; margin-left: auto; margin-right: auto; margin-top: 16px; }

/* ── Stats on homepage ── */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
.stat-card { background: var(--white); border-radius: 10px; padding: 24px 16px; text-align: center; box-shadow: var(--sh); }
.stat-num { font-size: 28px; font-weight: 800; color: var(--blue); }
.stat-label { font-size: 13px; color: var(--text2); margin-top: 4px; }
.hero-page { text-align: center; padding: 48px 16px 24px; max-width: 1160px; margin: 0 auto; }
.hero-page h1 { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 12px; line-height: 1.3; }
.hero-page p { font-size: 15px; color: var(--text2); max-width: 640px; margin: 0 auto 16px; line-height: 1.6; }
.sec { padding: 0 16px 40px; max-width: 1160px; margin: 0 auto; }
.sec h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }

/* ── Reviews list ── */
.rlist { display: flex; flex-direction: column; gap: 8px; }
.rlist-item { background: var(--white); border-radius: 10px; padding: 14px 18px; display: flex; align-items: flex-start; gap: 12px; box-shadow: var(--sh); transition: box-shadow .15s; line-height: 1.5; }
.rlist-item:hover { box-shadow: var(--sh2); }
.rlist-num { font-weight: 700; color: var(--blue); white-space: nowrap; flex-shrink: 0; margin-top: 1px; }
.rlist-num::before { content: '+'; }
.rlist-time { color: var(--text3); font-size: 12px; white-space: nowrap; flex-shrink: 0; margin-top: 3px; }
.rlist-author { font-weight: 600; color: var(--text); }
.rlist-text { color: var(--text2); }
.rlist-body { flex: 1; min-width: 0; }

/* ── SEO block ── */
.seo-block { max-width: 900px; margin: 0 auto; padding: 0 16px 48px; }
.seo-block h2 { font-size: 22px; font-weight: 700; margin-bottom: 16px; margin-top: 36px; }
.seo-block h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; margin-top: 28px; }
.seo-block p { font-size: 15px; color: var(--text2); margin-bottom: 16px; line-height: 1.7; }

/* ── Page content ── */
.page-content { max-width: 900px; margin: 0 auto; padding: 40px 16px; }
.page-content h1 { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 20px; }
.page-content h2 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 14px; margin-top: 28px; }
.page-content p { font-size: 15px; color: var(--text2); margin-bottom: 16px; line-height: 1.7; }
.page-content ul { margin: 0 0 16px; padding-left: 22px; }
.page-content li { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 6px; }
.page-content a { color: var(--blue); }
.page-content a:hover { text-decoration: underline; }
.page-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.page-stats div { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 16px; text-align: center; box-shadow: var(--sh); }
.page-stats strong { display: block; font-size: 22px; font-weight: 800; color: var(--blue); }
.page-stats span { display: block; font-size: 13px; color: var(--text3); margin-top: 4px; }
@media (max-width: 600px) {
  .page-stats { grid-template-columns: 1fr; }
}

/* ── Operator grid ── */
.op-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
.op-grid a { display: block; padding: 8px 12px; background: var(--white); border-radius: 8px; text-align: center; font-size: 14px; font-weight: 600; color: var(--blue); box-shadow: var(--sh); transition: box-shadow .15s; }
.op-grid a:hover { box-shadow: var(--sh2); }

/* ── MOBILE ── */
@media (max-width: 820px) {
  .page { grid-template-columns: 1fr; gap: 16px; }
  .side { display: none; }
  .mobile-summary { display: block; }
}
@media (max-width: 600px) {
  .hero-num { font-size: 28px; }
  .hdr-search { max-width: none; flex: 1; }
  .stats { grid-template-columns: 1fr; }
}

/* ── Homepage hero ── */
.home-hero { background: linear-gradient(150deg, var(--navy) 0%, #14365f 55%, #1a4170 100%); padding: 56px 16px 60px; position: relative; overflow: hidden; }
.home-hero::before { content:''; position:absolute; right:-80px; top:-120px; width:460px; height:460px; border-radius:50%; background:radial-gradient(circle, rgba(42,133,224,.22) 0%, transparent 68%); pointer-events:none; }
.home-hero::after { content:''; position:absolute; left:-120px; bottom:-160px; width:420px; height:420px; border-radius:50%; background:radial-gradient(circle, rgba(42,133,224,.10) 0%, transparent 70%); pointer-events:none; }
.home-hero-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr .9fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.home-hero-content { min-width: 0; max-width: 600px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: rgba(42,133,224,.14); border: 1px solid rgba(42,133,224,.28); padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; letter-spacing: .04em; color: #9ec6f2; margin-bottom: 20px; }
.hero-eyebrow svg { width: 14px; height: 14px; flex-shrink: 0; }
.home-hero-title { font-size: 42px; font-weight: 800; color: white; line-height: 1.08; margin-bottom: 16px; letter-spacing: -1px; }
.home-hero-title .accent { color: #5cabf0; }
.home-hero-sub { font-size: 16px; color: rgba(255,255,255,.72); margin-bottom: 28px; line-height: 1.6; max-width: 460px; }

.notfound-hero { min-height: 420px; display: flex; align-items: center; }
.notfound-hero-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.notfound-hero-inner .home-hero-sub,
.notfound-hero-inner .hero-search { margin-left: auto; margin-right: auto; }
.notfound-hero-inner .hero-hint { justify-content: center; margin-top: 4px; }

.hero-search { display: flex; background: white; border-radius: 12px; padding: 6px; box-shadow: 0 12px 40px rgba(0,0,0,.28); max-width: 480px; margin-bottom: 14px; }
.hero-search input {
  flex: 1; min-width: 0; height: 50px; border: none; outline: none; background: transparent;
  font-family: var(--f); font-size: 16px; color: var(--text); padding: 0 14px;
}
.hero-search input::placeholder { color: var(--text3); }
.hero-search button {
  height: 50px; padding: 0 24px; background: var(--blue); color: white; border: none; border-radius: 8px;
  font-family: var(--f); font-size: 16px; font-weight: 700; cursor: pointer; white-space: nowrap;
  display: flex; align-items: center; gap: 8px; transition: background .15s; flex-shrink: 0;
}
.hero-search button:hover { background: #1560b5; }
.hero-search svg { width: 18px; height: 18px; }

/* ── Search input with prefix ── */
.search-input-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.search-prefix {
  position: absolute;
  left: 16px;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.search-input-wrapper input {
  flex: 1;
  width: 100%;
  padding-left: 62px !important;
}

/* Error state */
.search-input-wrapper.error input {
  border-color: var(--red) !important;
  animation: shake 0.3s;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* Header variant - compact */
.hdr-search .search-prefix {
  font-size: 14px;
  left: 12px;
  color: white;
}
.hdr-search .search-input-wrapper input {
  padding-left: 52px !important;
}

/* Hero variant - large */
.hero-search .search-prefix {
  font-size: 16px;
  left: 14px;
}
.hero-search .search-input-wrapper input {
  padding-left: 60px !important;
}

/* Sidebar variant - standard */
.sw .search-prefix {
  font-size: 14px;
  left: 13px;
}
.sw .search-input-wrapper input {
  padding-left: 56px !important;
}

.hero-hint { margin-bottom: 32px; font-size: 13px; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero-hint a { color: #9ec6f2; padding: 0; background: none; border: none; }
.hero-hint a:hover { text-decoration: underline; }

.home-hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hh-stat { display: flex; flex-direction: column; }
.hh-stat-num { display: block; font-size: 22px; font-weight: 800; color: white; line-height: 1.1; }
.hh-stat-lbl { display: block; font-size: 11px; color: rgba(255,255,255,.45); margin-top: 4px; font-weight: 500; }

.home-hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }

/* ── Phone mockup ── */
.phone {
  width: 240px; height: 480px; background: #1a1a1a; border-radius: 42px;
  box-shadow: inset 0 0 0 2px #3a3a3a, 0 30px 70px rgba(0,0,0,.5), 0 10px 24px rgba(0,0,0,.3);
  position: relative; flex-shrink: 0;
}
.phone-screen {
  position: absolute; inset: 8px; background: linear-gradient(165deg, #15233a 0%, #0b1320 70%);
  border-radius: 35px; overflow: hidden; display: flex; flex-direction: column; align-items: center;
}
.ph-notch {
  position: relative; width: 110px; height: 24px; background: #1a1a1a; border-radius: 0 0 16px 16px;
  display: flex; align-items: center; justify-content: center; gap: 7px; flex-shrink: 0; z-index: 5;
}
.ph-speaker { width: 38px; height: 5px; background: #2a2a2a; border-radius: 3px; }
.ph-cam { width: 8px; height: 8px; background: #222; border-radius: 50%; border: 1px solid #333; }
.ph-call {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px;
}
.ph-warn-badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: #f5a86a;
  background: rgba(192,86,33,.28); border: 1px solid rgba(192,86,33,.4); padding: 4px 11px; border-radius: 20px; margin-bottom: 18px;
}
.ph-label { color: #c8d0dc; font-size: 14px; text-align: center; line-height: 1.5; margin-bottom: 10px; }
.ph-num { color: #fff; font-size: 20px; font-weight: 300; letter-spacing: .04em; text-align: center; }
.ph-btns {
  display: flex; align-items: center; justify-content: space-around; width: 100%; padding: 0 22px 30px;
}
.ph-btn-wrap { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.ph-btn {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; transition: transform .12s;
}
.ph-btn:active { transform: scale(.92); }
.ph-btn svg { width: 25px; height: 25px; fill: #fff; }
.ph-btn.decline {
  background: radial-gradient(circle at 40% 35%, #ff4e4e, #d42b2b);
  box-shadow: 0 6px 16px rgba(200,40,40,.5);
}
.ph-btn.accept {
  background: radial-gradient(circle at 40% 35%, #4cd66a, #27a845);
  box-shadow: 0 6px 16px rgba(40,170,70,.5); animation: ph-pulse 1.6s ease-in-out infinite;
}
.ph-btn-lbl { color: #9aa3b0; font-size: 11px; }
.ph-home { width: 96px; height: 5px; background: #4a5160; border-radius: 3px; margin-bottom: 11px; }

@keyframes ph-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ── Floating chips ── */
.float-chip {
  position: absolute; z-index: 3; background: #fff; border-radius: 12px; box-shadow: var(--sh2);
  padding: 10px 14px; display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--navy);
}
.float-chip .fc-ico {
  width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fc1 {
  top: 36px; left: -8px; animation: floaty 4s ease-in-out infinite;
}
.fc2 {
  bottom: 70px; right: -16px; animation: floaty 4s ease-in-out infinite .8s;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Homepage comments ── */
.home-comments { padding: 48px 16px; }
.home-comments-inner { max-width: 1160px; margin: 0 auto; }

/* ── Section header ── */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; gap: 16px; flex-wrap: wrap; }
.section-head-left { flex: 1; min-width: 0; }
.section-title { font-size: 26px; font-weight: 800; color: var(--navy); line-height: 1.2; margin: 0; }
.section-sub { font-size: 14px; color: var(--text2); margin-top: 4px; line-height: 1.4; }
.section-link { font-size: 14px; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 4px; transition: color .15s; }
.section-link:hover { color: #1560b5; text-decoration: none; }
.section-link svg { width: 16px; height: 16px; }
.home-comments-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hc-card {
  display: block; background: var(--white); border-radius: 10px; padding: 16px 18px;
  border: 1px solid var(--border); box-shadow: var(--sh); transition: box-shadow .15s, border-color .15s;
}
.hc-card:hover { box-shadow: var(--sh2); border-color: #c5d4e6; text-decoration: none; }
.hc-card-head { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.hc-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), #1457a8);
  color: white; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hc-meta { flex: 1; min-width: 0; }
.hc-author { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.hc-date { font-size: 11px; color: var(--text3); margin-top: 1px; }
.hc-body { font-size: 14px; color: var(--text2); line-height: 1.6; margin: 0 0 12px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.cc-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 10px; border-top: 1px solid var(--border); }
.cc-number { font-size: 13px; color: var(--blue); font-weight: 600; }
.cc-number:hover { color: #1560b5; }
.cc-votes { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text3); font-weight: 500; }

/* ── Homepage SEO ── */
.home-seo { padding: 0 16px 48px; }
.home-seo-inner { max-width: 900px; margin: 0 auto; }
.home-seo h2 { font-size: 22px; font-weight: 700; margin-bottom: 16px; margin-top: 36px; color: var(--navy); }
.home-seo h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; margin-top: 28px; color: var(--navy); }
.home-seo p { font-size: 15px; color: var(--text2); margin-bottom: 16px; line-height: 1.7; }
.home-seo ul { margin-bottom: 1rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .float-chip { display: none; }
  .phone { width: 200px; height: 400px; }
  .ph-btn { width: 52px; height: 52px; }
  .ph-btn svg { width: 20px; height: 20px; }
}

@media (max-width: 820px) {
  .home-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .home-hero-title { font-size: 32px; }
  .home-comments-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .home-hero { padding: 40px 16px; }
  .home-hero-title { font-size: 28px; }
  .home-hero-sub { font-size: 15px; }
  .home-hero-stats { grid-template-columns: 1fr; gap: 8px; }
  .home-hero-visual { display: none; }
  .hero-search { padding: 5px; }
  .hero-search { max-width: none; padding: 5px; border-radius: 11px; }
  .hero-search input { height: 48px; font-size: 16px; padding: 0 12px; }
  .hero-search button { height: 48px; padding: 0 18px; font-size: 15px; }
  .hero-hint { margin-bottom: 0; }
}
