/* ============================================================
   Stop Spam — Shared Stylesheet
   Used by: /, /uk/, /privacy-policy/, /uk/privacy-policy/
   ============================================================ */

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

:root {
  --bg: #04040C;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.22);
  --text: #F0F0FA;
  --muted: rgba(240,240,250,0.44);
  --accent: #1A6EFF;
  --accent2: #00C896;
  --accent3: #38CFFF;
  --glow: rgba(26,110,255,0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Outfit', sans-serif; }

/* ── AURORA BACKGROUND ── */
.aurora {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none; overflow: hidden;
}
.aurora-blob {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.18;
  animation: drift 18s ease-in-out infinite alternate;
}
.aurora-blob:nth-child(1) {
  width: 750px; height: 750px;
  background: radial-gradient(circle, #1A6EFF, transparent);
  top: -250px; left: -200px;
  animation-duration: 20s; opacity: 0.16;
}
.aurora-blob:nth-child(2) {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #38CFFF, transparent);
  top: 5%; right: -180px;
  animation-duration: 25s; animation-delay: -5s; opacity: 0.1;
}
.aurora-blob:nth-child(3) {
  width: 550px; height: 550px;
  background: radial-gradient(circle, #00C896, transparent);
  bottom: 10%; left: 25%;
  animation-duration: 22s; animation-delay: -10s; opacity: 0.08;
}
@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(60px,40px) scale(1.15); }
}

/* ── NOISE OVERLAY ── */
body::after {
  content: ''; position: fixed; inset: 0;
  z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.025;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; display: flex; align-items: center;
  justify-content: space-between; padding: 18px 40px;
  background: rgba(4,4,12,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border); transition: all 0.3s;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; letter-spacing: -0.3px;
  text-decoration: none; color: var(--text);
}
.nav-logo .logo-icon {
  width: 32px; height: 32px;
  border-radius: 8px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.nav-links {
  display: flex; align-items: center; gap: 2px; list-style: none;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 12px; border-radius: 8px;
  white-space: nowrap; transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-blog-link {
  display: none; /* shown only on mobile via media query */
}
@media (max-width: 900px) {
  .nav-blog-link {
    display: block;
    color: var(--muted); text-decoration: none;
    font-size: 14px; font-weight: 500;
    padding: 8px 12px; border-radius: 8px;
    white-space: nowrap; transition: all 0.2s;
  }
  .nav-blog-link:hover { color: var(--text); background: var(--surface); }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 600; font-family: 'Outfit', sans-serif;
  cursor: pointer; text-decoration: none; transition: all 0.2s; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #1A6EFF, #38CFFF);
  color: #fff; box-shadow: 0 0 24px var(--glow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 36px var(--glow); }
.btn-ghost {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--surface-hover); border-color: var(--border-hover); }

/* Language switcher */
.lang-switcher {
  display: flex; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.lang-btn {
  padding: 6px 12px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; color: var(--muted);
  text-decoration: none; transition: all 0.2s;
}
.lang-btn:hover { color: var(--text); background: var(--surface-hover); }
.lang-btn.active { color: var(--accent); background: rgba(26,110,255,0.12); }

/* ── SECTIONS ── */
section { position: relative; z-index: 2; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex;
  align-items: center; justify-content: center;
  padding: 120px 60px 80px;
}
.hero-inner {
  max-width: 1140px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}
.hero-text { text-align: left; }
.hero-text .hero-badge { display: inline-flex; }
.hero-text .hero-actions { justify-content: flex-start; }
.hero-text p { margin: 0 0 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; font-size: 12px; font-weight: 600;
  color: var(--muted); margin-bottom: 28px;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.hero-badge span {
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  color: #fff; border-radius: 100px; padding: 2px 10px; font-size: 11px;
}
.hero h1 {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -2px; margin-bottom: 24px;
}
.grad-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 17px; line-height: 1.7; color: var(--muted);
  max-width: 520px; margin: 0 auto 40px;
}
.hero-actions {
  display: flex; align-items: center;
  justify-content: center; gap: 12px; flex-wrap: wrap;
}
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 14px;
  font-weight: 600; font-size: 15px; font-family: 'Outfit', sans-serif;
  text-decoration: none; transition: all 0.25s;
  border: 1px solid var(--border);
}
.store-btn-apple { background: #fff; color: #000; }
.store-btn-apple:hover { background: #e8e8e8; transform: translateY(-2px); }
.store-btn-google { background: var(--surface); color: var(--text); }
.store-btn-google:hover { background: var(--surface-hover); transform: translateY(-2px); border-color: var(--border-hover); }
.store-btn-label { display: flex; flex-direction: column; text-align: left; }
.store-btn-label small { font-size: 10px; font-weight: 400; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── PHONE MOCKUP ── */
.hero-visual {
  position: relative; display: flex;
  justify-content: center; align-items: center;
}
.phone-frame {
  width: 270px; height: 562px;
  text-align: left;
  background: linear-gradient(160deg, #10101E 0%, #090914 60%, #0a0a18 100%);
  border-radius: 46px;
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 1px 0 0 rgba(255,255,255,0.08),
    inset -1px 0 0 rgba(255,255,255,0.04),
    0 0 0 1.5px rgba(255,255,255,0.18),
    0 0 0 3.5px rgba(4,4,12,0.95),
    0 0 0 5px rgba(255,255,255,0.07),
    0 60px 140px rgba(0,0,0,0.95),
    0 0 100px rgba(26,110,255,0.22);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; padding: 10px 14px 28px;
}
.phone-btn-power {
  position: absolute; right: -4px; top: 130px;
  width: 4px; height: 64px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.09));
  border-radius: 0 4px 4px 0; box-shadow: 2px 0 4px rgba(0,0,0,0.4);
}
.phone-btn-vol1 {
  position: absolute; left: -4px; top: 100px;
  width: 4px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.09));
  border-radius: 4px 0 0 4px; box-shadow: -2px 0 4px rgba(0,0,0,0.4);
}
.phone-btn-vol2 {
  position: absolute; left: -4px; top: 148px;
  width: 4px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.09));
  border-radius: 4px 0 0 4px; box-shadow: -2px 0 4px rgba(0,0,0,0.4);
}
.phone-status-bar {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 10px; margin-bottom: 6px; height: 16px; flex-shrink: 0;
}
.phone-time { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.92); letter-spacing: -0.3px; }
.phone-status-icons { display: flex; align-items: center; gap: 4px; }
.phone-dynamic-island {
  width: 108px; height: 19px; background: #000; border-radius: 12px;
  margin-bottom: 12px; flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.07), 0 1px 6px rgba(0,0,0,0.5);
  position: relative;
}
.phone-dynamic-island::after {
  content: ''; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #1a1a30, #050510);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.06), 0 0 5px rgba(26,110,255,0.3);
}
.phone-gloss {
  position: absolute; top: 0; left: 0; width: 100%; height: 45%;
  pointer-events: none;
  background: linear-gradient(170deg, rgba(255,255,255,0.065) 0%, transparent 65%);
  border-radius: 46px 46px 0 0;
}
.phone-home-indicator {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 4px; background: rgba(255,255,255,0.28); border-radius: 2px;
}
.phone-screen-header {
  width: 100%; text-align: center; font-size: 11px;
  color: var(--muted); margin-bottom: 12px; font-weight: 500;
}
.call-card {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 14px; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.call-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.call-avatar.spam  { background: rgba(255,60,60,0.18); }
.call-avatar.safe  { background: rgba(0,200,150,0.18); }
.call-avatar.block { background: rgba(26,110,255,0.18); }
.call-info { flex: 1; min-width: 0; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.call-info-name { font-size: 11px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.call-info-num  { font-size: 10px; color: var(--muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.call-badge { font-size: 9px; font-weight: 700; padding: 3px 7px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.04em; flex-shrink: 0; }
.call-badge.spam { background: rgba(255,50,50,0.18); color: #FF3C3C; }
.call-badge.safe { background: rgba(0,200,150,0.18); color: #00C896; }
.call-badge.ai   { background: rgba(26,110,255,0.18); color: #5599FF; }
.phone-glow {
  position: absolute; bottom: 0; left: 0; right: 0; height: 130px;
  background: linear-gradient(to top, rgba(26,110,255,0.1) 0%, transparent 100%);
  pointer-events: none;
}
.floating-badge {
  position: absolute; padding: 10px 14px;
  background: rgba(4,4,12,0.85); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 14px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.floating-badge.left  { left: -90px; top: 28%; animation: floatY 4s ease-in-out infinite; }
.floating-badge.right { right: -90px; top: 58%; animation: floatY 4s ease-in-out infinite 2s; }
.floating-badge .fb-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── STATS ── */
.stats-wrapper { padding: 0 60px 60px; position: relative; z-index: 2; }
.stats-row {
  display: flex; justify-content: center;
  border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; max-width: 900px;
  margin: 0 auto; background: var(--surface);
}
.stat-item { flex: 1; padding: 28px 20px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 34px; font-weight: 800; letter-spacing: -1.5px;
  background: linear-gradient(135deg, #fff 40%, var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; font-weight: 500; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px; padding: 4px 12px;
  background: rgba(26,110,255,0.1); border-radius: 100px;
  border: 1px solid rgba(26,110,255,0.25);
}
.section-header h2 {
  font-size: clamp(30px, 4vw, 50px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px;
}
.section-header p { font-size: 16px; color: var(--muted); max-width: 480px; margin: 0 auto; line-height: 1.7; }

/* ── BENTO GRID ── */
.bento-section { padding: 100px 40px; max-width: 1140px; margin: 0 auto; }
.bento-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.bento-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; padding: 32px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.bento-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent); pointer-events: none;
}
.bento-card:hover {
  border-color: var(--border-hover); background: var(--surface-hover);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 40px rgba(26,110,255,0.07);
}
.bento-card.span-2  { grid-column: span 2; }
.bento-card.span-full { grid-column: span 3; }
.bento-card.accent-purple::after {
  content: ''; position: absolute; top: 0; right: 0; width: 220px; height: 220px;
  background: radial-gradient(circle at top right, rgba(26,110,255,0.14), transparent 60%); pointer-events: none;
}
.bento-card.accent-teal::after {
  content: ''; position: absolute; top: 0; right: 0; width: 220px; height: 220px;
  background: radial-gradient(circle at top right, rgba(0,200,150,0.12), transparent 60%); pointer-events: none;
}
.bento-card.accent-pink::after {
  content: ''; position: absolute; top: 0; right: 0; width: 220px; height: 220px;
  background: radial-gradient(circle at top right, rgba(56,207,255,0.12), transparent 60%); pointer-events: none;
}
.card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card-icon.purple { background: rgba(26,110,255,0.12); }
.card-icon.teal   { background: rgba(0,200,150,0.12); }
.card-icon.pink   { background: rgba(56,207,255,0.12); }
.card-icon.orange { background: rgba(0,200,150,0.12); }
.bento-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 10px; }
.bento-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }
.bento-card.big { padding: 40px; }
.bento-card.big h3 { font-size: 24px; letter-spacing: -0.5px; margin-bottom: 14px; }
.bento-card.big p  { font-size: 15px; }

.ai-visual { margin-top: 28px; display: flex; flex-direction: column; gap: 8px; }
.ai-bar { height: 6px; border-radius: 10px; background: rgba(255,255,255,0.06); overflow: hidden; }
.ai-bar-fill { height: 100%; border-radius: 10px; animation: barFill 2.5s ease-in-out infinite alternate; }
.ai-bar-fill.a { background: linear-gradient(90deg, var(--accent), var(--accent3)); width: 88%; }
.ai-bar-fill.b { background: linear-gradient(90deg, var(--accent3), var(--accent2)); width: 72%; animation-delay: 0.3s; }
.ai-bar-fill.c { background: linear-gradient(90deg, var(--accent2), var(--accent)); width: 95%; animation-delay: 0.6s; }
.ai-bar-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-bottom: 4px; }
@keyframes barFill { from { opacity: 0.7; } to { opacity: 1; } }

.mini-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.mini-stat { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 14px; padding: 16px; }
.mini-stat-val { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; color: var(--text); }
.mini-stat-label { font-size: 11px; color: var(--muted); margin-top: 4px; }

.tag-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chip { padding: 6px 12px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 100px; font-size: 12px; font-weight: 500; color: var(--muted); }
.chip.active { border-color: var(--accent2); color: var(--accent2); background: rgba(0,200,150,0.1); }

/* ── HOW IT WORKS ── */
.how-section { padding: 100px 40px; max-width: 1140px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.step-card {
  position: relative; padding: 36px 28px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; transition: all 0.3s;
}
.step-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.step-num {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  background: rgba(26,110,255,0.1); border: 1px solid rgba(26,110,255,0.25);
  display: inline-block; padding: 4px 10px; border-radius: 8px;
}
.step-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 12px; }
.step-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── REVIEWS ── */
.reviews-section { padding: 100px 40px; max-width: 1140px; margin: 0 auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 60px; }
.review-card { padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; transition: all 0.3s; }
.review-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.review-stars { color: #fbbf24; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text  { font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
}
.review-name     { font-size: 13px; font-weight: 600; }
.review-platform { font-size: 11px; color: var(--muted); }

/* ── CTA ── */
.cta-section { padding: 100px 40px; max-width: 900px; margin: 0 auto; }
.cta-box {
  background: linear-gradient(135deg, rgba(26,110,255,0.12), rgba(56,207,255,0.06));
  border: 1px solid rgba(26,110,255,0.2); border-radius: 32px;
  padding: 80px 60px; text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 0%, rgba(26,110,255,0.1), transparent 50%); pointer-events: none;
}
.cta-box h2 { font-size: clamp(28px,4vw,48px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.cta-box p  { font-size: 16px; color: var(--muted); max-width: 440px; margin: 0 auto 40px; line-height: 1.7; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 48px 40px; position: relative; z-index: 2; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; color: var(--text); text-decoration: none; }
.footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ── SCROLL ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .hero-text { text-align: center; order: 2; }
  .hero-text .hero-actions { justify-content: center; }
  .hero-visual { order: 1; }
  .hero-visual .floating-badge { display: none; }
  .phone-frame { width: 200px; height: 416px; border-radius: 38px; transform: none; }
  .phone-dynamic-island { width: 84px; height: 15px; margin-bottom: 10px; }
  .call-card { padding: 10px; }
  .bento-grid { grid-template-columns: repeat(2,1fr); }
  .bento-card.span-2   { grid-column: span 2; }
  .bento-card.span-full{ grid-column: span 2; }
  .steps-grid   { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-row { display: grid; grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .stats-wrapper { padding: 0 20px 40px; }
  .cta-box { padding: 48px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { gap: 16px; }
  footer { padding: 40px 20px; }
  .bento-section, .how-section, .reviews-section, .cta-section { padding: 60px 20px; }
  .hero { padding: 80px 20px 40px; }
}
@media (max-width: 600px) {
  nav { padding: 12px 16px; }
  .nav-logo { font-size: 15px; white-space: nowrap; gap: 8px; }
  .nav-cta { gap: 6px; }
  .nav-cta .btn-ghost { display: none; }
  .btn-primary { padding: 8px 14px; font-size: 13px; }
  .lang-btn { padding: 5px 8px; font-size: 12px; }
  .phone-frame { width: 220px; height: 458px; border-radius: 40px; padding: 8px 12px 24px; transform: none; }
  .phone-dynamic-island { width: 84px; height: 16px; margin-bottom: 10px; }
  .phone-status-bar { height: 14px; margin-bottom: 5px; padding: 0 8px; }
  .phone-time { font-size: 10px; }
  .phone-btn-power { right: -4px; width: 4px; height: 56px; top: 120px; }
  .phone-btn-vol1  { left: -4px;  width: 4px; height: 30px; top: 92px;  }
  .phone-btn-vol2  { left: -4px;  width: 4px; height: 30px; top: 134px; }
  .call-card { padding: 11px 12px; margin-bottom: 7px; }
  .call-avatar { width: 34px; height: 34px; }
  .call-info-name { font-size: 11px; }
  .call-info-num  { font-size: 10px; }
  .call-badge { font-size: 9px; padding: 3px 7px; }
  .phone-home-indicator { width: 80px; bottom: 8px; }
  .hero { padding: 70px 16px 32px; }
  .hero-inner { gap: 20px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.span-2 { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .store-btn { justify-content: center; }
  footer { padding: 28px 16px; }
  .footer-links { gap: 12px; }
  .footer-links a { font-size: 12px; }
  .footer-copy { font-size: 11px; }
}

/* ── POLICY PAGES ── */
.btn-back {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 10px;
  font-size: 13px; font-weight: 600;
  background: var(--surface); color: var(--muted);
  border: 1px solid var(--border);
  text-decoration: none; transition: all 0.2s;
}
.btn-back:hover { background: var(--surface-hover); color: var(--text); border-color: var(--border-hover); }

.callx-badge {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #00b8ff;
  background: rgba(0,184,255,0.12);
  border: 1px solid rgba(0,184,255,0.25);
  border-radius: 6px; padding: 2px 7px;
}

.page-wrap {
  position: relative; z-index: 2;
  max-width: 780px; margin: 0 auto;
  padding: 120px 40px 80px;
}

.page-header { margin-bottom: 56px; }
.page-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  padding: 4px 12px;
  background: rgba(26,110,255,0.1);
  border-radius: 100px; border: 1px solid rgba(26,110,255,0.2);
}
.page-label.callx {
  color: #00b8ff;
  background: rgba(0,184,255,0.1);
  border-color: rgba(0,184,255,0.2);
}
.page-header h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.1; margin-bottom: 16px;
}
.page-meta {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; margin-top: 24px;
}
.meta-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; font-size: 12px; color: var(--muted);
}
.meta-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent2); }

.toc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 32px; margin-bottom: 48px;
}
.toc-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.toc-list a {
  color: var(--muted); text-decoration: none; font-size: 14px;
  font-weight: 500; display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.toc-list a:hover { color: var(--text); }
.toc-list a::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; opacity: 0.6;
}

.policy-section {
  margin-bottom: 48px; padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.policy-section:last-child { border-bottom: none; }
.section-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px; display: inline-block;
}
.policy-section h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.4px; margin-bottom: 16px; }
.policy-section p { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 16px; }
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul { list-style: none; margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.policy-section ul li {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  padding-left: 20px; position: relative;
}
.policy-section ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); opacity: 0.6;
}

.highlight-box {
  background: rgba(26,110,255,0.07); border: 1px solid rgba(26,110,255,0.2);
  border-radius: 14px; padding: 20px 24px; margin: 20px 0;
}
.highlight-box.teal { background: rgba(0,200,150,0.07); border-color: rgba(0,200,150,0.2); }
.highlight-box.pink { background: rgba(56,207,255,0.06); border-color: rgba(56,207,255,0.2); }
.highlight-box p { font-size: 14px !important; color: var(--muted) !important; margin: 0 !important; }
.highlight-box strong { color: var(--text); }

.contact-card {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; margin-top: 20px;
  text-decoration: none; transition: all 0.2s;
}
.contact-card:hover { border-color: var(--border-hover); background: var(--surface-hover); }
.contact-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(26,110,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-text { flex: 1; }
.contact-label { font-size: 12px; color: var(--muted); font-weight: 500; margin-bottom: 2px; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--text); }

.footer-inner.narrow { max-width: 780px; }

@media (max-width: 640px) {
  .page-wrap { padding: 100px 20px 60px; }
}

/* ── BLOG ── */
.blog-hero {
  position: relative; z-index: 2;
  padding: 140px 40px 80px; text-align: center;
  max-width: 780px; margin: 0 auto;
}
.blog-hero h1 { font-size: clamp(36px,5vw,60px); font-weight: 800; letter-spacing: -2px; margin-bottom: 16px; }
.blog-hero p  { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 520px; margin: 0 auto; }

.posts-section { position: relative; z-index: 2; max-width: 1140px; margin: 0 auto; padding: 0 40px 100px; }
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.post-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden;
  text-decoration: none; color: var(--text);
  display: flex; flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.post-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(26,110,255,0.08); }

.post-card-cover {
  height: 180px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 20px;
}
.post-card-cover.blue  { background: linear-gradient(135deg, rgba(26,110,255,0.25) 0%, rgba(56,207,255,0.1) 100%); }
.post-card-cover.teal  { background: linear-gradient(135deg, rgba(0,200,150,0.22) 0%, rgba(56,207,255,0.08) 100%); }
.post-card-cover.pink  { background: linear-gradient(135deg, rgba(255,90,130,0.22) 0%, rgba(56,207,255,0.08) 100%); }
.post-card-cover::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E") center/cover;
  opacity: 0.04;
}
.post-card-cover-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}

.post-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.post-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.post-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(26,110,255,0.1); color: var(--accent);
  border: 1px solid rgba(26,110,255,0.2);
}
.post-tag.teal { background: rgba(0,200,150,0.1); color: var(--accent2); border-color: rgba(0,200,150,0.2); }
.post-card-title { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; line-height: 1.35; }
.post-card-excerpt { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }
.post-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--muted); margin-top: 4px;
}
.post-card-meta span { display: flex; align-items: center; gap: 5px; }
.post-card-arrow { font-size: 16px; color: var(--accent); transition: transform 0.2s; }
.post-card:hover .post-card-arrow { transform: translateX(4px); }

/* ── ARTICLE PAGE ── */
.article-wrap {
  position: relative; z-index: 2;
  max-width: 740px; margin: 0 auto;
  padding: 120px 40px 80px;
}
.article-header { margin-bottom: 56px; }
.article-tags { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.article-header h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 24px;
}
.article-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-bottom: 32px; border-bottom: 1px solid var(--border);
}
.article-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.article-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

.article-body h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.4px; margin: 40px 0 14px; }
.article-body h3 { font-size: 17px; font-weight: 700; margin: 28px 0 10px; }
.article-body p  { font-size: 16px; line-height: 1.85; color: var(--muted); margin-bottom: 20px; }
.article-body ul { list-style: none; margin: 0 0 20px; display: flex; flex-direction: column; gap: 10px; }
.article-body ul li {
  font-size: 16px; color: var(--muted); line-height: 1.7;
  padding-left: 22px; position: relative;
}
.article-body ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); opacity: 0.7;
}
.article-body strong { color: var(--text); font-weight: 600; }
.article-body .highlight-box { margin: 28px 0; }

.how-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px; margin: 12px 0;
  background: rgba(26,110,255,0.06); border: 1px solid rgba(26,110,255,0.15);
  border-radius: 16px;
}
.how-step-num {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}

.article-cta {
  margin-top: 60px; padding: 48px 40px; text-align: center;
  background: linear-gradient(135deg, rgba(26,110,255,0.12), rgba(56,207,255,0.06));
  border: 1px solid rgba(26,110,255,0.2); border-radius: 28px;
}
.article-cta h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; }
.article-cta p  { font-size: 15px; color: var(--muted); margin-bottom: 28px; }
.article-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
  .posts-grid { grid-template-columns: repeat(2,1fr); }
  .blog-hero, .posts-section { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 600px) {
  .posts-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 100px 20px 48px; }
  .article-wrap { padding: 100px 20px 60px; }
  .article-cta { padding: 32px 20px; }
}
