/* ============================================================
   Wifi Note — landing page
   Theme: dark, glass, indigo → cyan accents
   ============================================================ */

:root {
  --bg-0: #05070f;
  --bg-1: #0a0f1e;
  --bg-2: #101731;
  --bg-alt: #0d1328;
  --card: rgba(255,255,255,0.04);
  --card-strong: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #e9edf8;
  --muted: #9aa3bd;
  --muted-2: #6e778f;
  --accent: #6a8dff;
  --accent-2: #2ee4d6;
  --accent-3: #b06bff;
  --good: #3ddc97;
  --shadow: 0 24px 60px -20px rgba(0,0,0,0.65);
  --radius: 16px;
  --radius-lg: 22px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; letter-spacing: -0.02em; }
p { margin: 0; color: var(--muted); }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  background: rgba(10, 15, 30, 0.65);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; letter-spacing: -0.01em;
}
.brand-icon {
  width: 32px; height: 32px; border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.brand-name { font-size: 16px; }
.site-links {
  display: flex; align-items: center; gap: 22px;
  font-size: 14px;
  color: var(--muted);
}
.site-links a { transition: color .2s ease; }
.site-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #051018 !important;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  box-shadow: 0 6px 20px -8px rgba(46, 228, 214, 0.55);
}
.nav-cta:hover { filter: brightness(1.08); }

.lang-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-picker::before {
  content: "🌐";
  font-size: 12px;
  margin-right: 6px;
  opacity: 0.7;
}
.lang-picker select {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 26px 6px 12px;
  font-size: 13px;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='%239aa3bd'><path d='M0 0l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 8px;
}
.lang-picker select:hover { border-color: var(--border-strong); }
.lang-picker select option {
  background: #0a0f1e;
  color: var(--text);
}

@media (max-width: 760px) {
  .site-links a:not(.nav-cta) { display: none; }
  .site-nav { padding: 12px 16px; }
  .lang-picker::before { display: none; }
  .lang-picker select { padding: 6px 22px 6px 10px; font-size: 12px; }
}

/* RTL support (Arabic, Hebrew, etc.) */
html[dir="rtl"] .hero-ctas,
html[dir="rtl"] .hero-meta,
html[dir="rtl"] .footer-inner,
html[dir="rtl"] .footer-links,
html[dir="rtl"] .cta-inner { direction: rtl; }
html[dir="rtl"] .hero-sub,
html[dir="rtl"] .section-sub,
html[dir="rtl"] .feature-card p,
html[dir="rtl"] .step p,
html[dir="rtl"] .use,
html[dir="rtl"] .privacy-copy p,
html[dir="rtl"] .faq details p { text-align: right; }
html[dir="rtl"] .privacy-list li { padding-left: 0; padding-right: 28px; }
html[dir="rtl"] .privacy-list li::before { left: auto; right: 0; }
html[dir="rtl"] .privacy-list li::after { left: auto; right: 4px; }
html[dir="rtl"] .plan ul li { padding-left: 0; padding-right: 20px; }
html[dir="rtl"] .plan ul li::before { left: auto; right: 0; }
html[dir="rtl"] .b-url { font-family: -apple-system, sans-serif; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 84px 28px 64px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 20% 10%, rgba(106,141,255,0.22), transparent 60%),
    radial-gradient(55% 60% at 85% 20%, rgba(46,228,214,0.18), transparent 60%),
    radial-gradient(60% 70% at 50% 100%, rgba(176,107,255,0.14), transparent 60%),
    linear-gradient(180deg, #05070f 0%, #0a0f1e 70%, #05070f 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}
.hero-text { max-width: 620px; }
.hero-icon {
  width: 68px; height: 68px;
  border-radius: 16px;
  box-shadow: 0 14px 40px -10px rgba(106,141,255,0.6);
  margin-bottom: 18px;
}
.hero-eyebrow {
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 14px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: #c5d0ff;
  background: rgba(106,141,255,0.12);
  border: 1px solid rgba(106,141,255,0.3);
  border-radius: 999px;
}
.hero-title {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.03;
  font-weight: 700;
}
.hero-title span { display: block; }
.gradient {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 55%, var(--accent-3) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 18px;
  font-size: 17px;
  color: #b6bdd4;
  max-width: 560px;
}
.hero-ctas {
  margin-top: 28px;
  display: flex; gap: 18px; align-items: center;
  flex-wrap: wrap;
}
.app-store-badge {
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .2s ease;
}
.app-store-badge:hover { transform: translateY(-1px); }
.secondary-cta {
  color: var(--muted);
  font-size: 14.5px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all .2s ease;
}
.secondary-cta:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.03);
}
.hero-meta {
  margin-top: 22px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px;
  color: var(--muted-2);
  flex-wrap: wrap;
}
.meta-label {
  color: var(--good);
  font-weight: 600;
}
.meta-sep { color: var(--muted-2); opacity: 0.4; }

/* ------- Phone + browser mock ------- */
.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 18px;
}

/* Phone */
.phone-mock {
  position: relative;
  width: 230px;
  height: 470px;
  background: linear-gradient(180deg, #1a2040 0%, #0b1025 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 38px;
  padding: 10px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 22px;
  background: #05070f;
  border-radius: 999px;
  z-index: 2;
}
.phone-screen {
  position: relative;
  background: linear-gradient(180deg, #0a0f1e 0%, #10172f 100%);
  border-radius: 28px;
  height: 100%;
  overflow: hidden;
  padding: 36px 12px 10px;
  display: flex; flex-direction: column;
  color: #e9edf8;
  font-size: 11.5px;
}
.p-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6px 10px;
  border-bottom: 1px solid var(--border);
}
.p-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--good);
  box-shadow: 0 0 8px var(--good);
}
.p-title { font-weight: 600; font-size: 12.5px; }
.p-wifi { color: var(--accent-2); opacity: .9; }
.p-bubbles {
  flex: 1;
  padding: 10px 4px;
  display: flex; flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.bubble {
  max-width: 82%;
  padding: 7px 10px;
  border-radius: 14px;
  font-size: 11px;
  line-height: 1.35;
  word-break: break-word;
}
.bubble.me {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--accent) 0%, #4c7bff 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 14px -6px rgba(106,141,255,0.6);
}
.bubble.media {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px;
}
.bubble.audio {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 8px;
}
.bubble .thumb {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
  font-size: 9px; font-weight: 700;
  flex-shrink: 0;
}
.bubble .thumb.photo { background: linear-gradient(135deg, #7cb9ff, #b06bff); }
.bubble .thumb.pdf { background: #ff5a5f; color: #fff; }
.bubble.audio .play {
  width: 22px; height: 22px; border-radius: 999px;
  background: rgba(255,255,255,0.2);
  display: grid; place-items: center;
  font-size: 9px;
  flex-shrink: 0;
}
.bubble.audio .wave {
  flex: 1;
  display: flex; align-items: center; gap: 2px;
  height: 18px;
}
.bubble.audio .wave span {
  display: block;
  width: 2px; border-radius: 2px;
  background: rgba(255,255,255,0.8);
}
.bubble.audio .wave span:nth-child(1){ height: 30%; }
.bubble.audio .wave span:nth-child(2){ height: 60%; }
.bubble.audio .wave span:nth-child(3){ height: 90%; }
.bubble.audio .wave span:nth-child(4){ height: 70%; }
.bubble.audio .wave span:nth-child(5){ height: 50%; }
.bubble.audio .wave span:nth-child(6){ height: 80%; }
.bubble.audio .wave span:nth-child(7){ height: 40%; }
.bubble.audio .wave span:nth-child(8){ height: 60%; }
.bubble.audio .t {
  font-size: 10px;
  opacity: .85;
}
.p-input {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 6px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  border: 1px solid var(--border);
  margin-top: auto;
}
.p-plus, .p-send {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  font-size: 13px;
  flex-shrink: 0;
}
.p-send {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #051018;
  font-weight: 700;
}
.p-field {
  flex: 1;
  color: var(--muted-2);
  font-size: 11px;
}

/* Arrow bridge */
.arrow-link {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  color: var(--accent-2);
  font-size: 11px; letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Browser */
.browser-mock {
  background: linear-gradient(180deg, #141a34 0%, #0b1025 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 360px;
}
.b-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 12px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
}
.b-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: #555;
}
.b-dot.r { background: #ff5f56; }
.b-dot.y { background: #ffbd2e; }
.b-dot.g { background: #27c93f; }
.b-url {
  margin-left: 10px;
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  color: var(--muted);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.b-body {
  display: grid;
  grid-template-columns: 100px 1fr;
  min-height: 300px;
}
.b-sidebar {
  padding: 12px 8px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 2px;
  font-size: 12px;
}
.b-row {
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--muted);
  cursor: default;
}
.b-row.active {
  background: rgba(106,141,255,0.15);
  color: var(--text);
}
.b-grid {
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-content: start;
}
.b-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  font-size: 11px;
  color: var(--muted);
  display: flex; flex-direction: column; gap: 6px;
  overflow: hidden;
}
.b-thumb {
  aspect-ratio: 16/10;
  border-radius: 6px;
  background: linear-gradient(135deg, #4c7bff, #b06bff);
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 11px;
}
.b-thumb.photo { background: linear-gradient(135deg, #7cb9ff, #b06bff); }
.b-thumb.photo.alt { background: linear-gradient(135deg, #2ee4d6, #4c7bff); }
.b-thumb.video { background: linear-gradient(135deg, #ff7a59, #ff3c9d); font-size: 18px; }
.b-thumb.pdf { background: #ff5a5f; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { justify-content: center; grid-template-columns: auto auto 1fr; }
}
@media (max-width: 680px) {
  .hero { padding-top: 60px; }
  .hero-visual {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
  }
  .arrow-link { transform: rotate(90deg); }
  .browser-mock { width: 100%; }
  .hero-title { font-size: 40px; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 96px 28px;
  background: var(--bg-1);
}
.section.alt { background: var(--bg-alt); }
.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
}
.section-sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.feature-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: var(--card-strong);
}
.feat-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  color: #fff;
}
.feat-ico.chat { background: linear-gradient(135deg, #6a8dff, #4c7bff); }
.feat-ico.wifi { background: linear-gradient(135deg, #2ee4d6, #5cc7ff); color: #05221f; }
.feat-ico.qr   { background: linear-gradient(135deg, #b06bff, #6a8dff); }
.feat-ico.search { background: linear-gradient(135deg, #ffbd2e, #ff7a59); color: #2a1400; }
.feat-ico.lock { background: linear-gradient(135deg, #3ddc97, #2ee4d6); color: #03231a; }
.feat-ico.audio { background: linear-gradient(135deg, #ff7a59, #ff3c9d); }
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.feature-card p { font-size: 14.5px; line-height: 1.55; }

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 20px; }
}

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}
.step-num {
  width: 34px; height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #051018;
  font-weight: 700;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { font-size: 14.5px; line-height: 1.55; }

@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   USE CASES
   ============================================================ */
.usecases {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.use {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}
.use b { color: var(--text); font-weight: 600; }

@media (max-width: 900px) { .usecases { grid-template-columns: 1fr; } }

/* ============================================================
   PRIVACY
   ============================================================ */
.privacy {
  background: linear-gradient(180deg, #080c18 0%, #0a0f1e 100%);
  position: relative;
  overflow: hidden;
}
.privacy::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 80% 30%, rgba(46,228,214,0.18), transparent 70%);
  pointer-events: none;
}
.privacy-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.privacy-copy h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.privacy-copy p { font-size: 15.5px; }
.privacy-list {
  margin-top: 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.privacy-list li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
  font-size: 14.5px;
}
.privacy-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 0 0 3px rgba(46,228,214,0.14);
}
.privacy-list li::after {
  content: "";
  position: absolute;
  left: 4px; top: 10px;
  width: 8px; height: 5px;
  border-left: 2px solid #051018;
  border-bottom: 2px solid #051018;
  transform: rotate(-45deg);
}
.privacy-visual {
  display: grid; place-items: center;
  gap: 12px;
}
.shield {
  width: 160px; height: 160px;
  border-radius: 40px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(106,141,255,0.18), rgba(46,228,214,0.18));
  border: 1px solid var(--border-strong);
  color: #c9d1ff;
  box-shadow: 0 30px 80px -20px rgba(46,228,214,0.35);
}
.shield-label {
  color: var(--muted);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .privacy-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.plan {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.plan.featured {
  background: linear-gradient(180deg, rgba(106,141,255,0.12) 0%, rgba(46,228,214,0.05) 100%);
  border-color: rgba(106,141,255,0.4);
  box-shadow: 0 30px 60px -20px rgba(106,141,255,0.35);
}
.plan-tag {
  position: absolute; top: -12px; right: 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #051018;
  font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px;
}
.plan h3 { font-size: 18px; }
.plan .price {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.plan.featured .price {
  font-size: 18px;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.plan ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.plan ul li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.plan ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--good);
  font-weight: 700;
}
.plan-cta {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-size: 14px; font-weight: 600;
  color: var(--text);
}
.plan-cta.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #051018;
  border-color: transparent;
}
@media (max-width: 700px) {
  .pricing { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
}
.faq details[open] {
  background: var(--card-strong);
  border-color: var(--border-strong);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--muted);
  font-size: 20px;
  transition: transform .2s ease;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.bottom-cta {
  padding: 80px 28px;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(106,141,255,0.25), transparent 70%),
    linear-gradient(180deg, #0a0f1e 0%, #05070f 100%);
}
.cta-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(106,141,255,0.12) 0%, rgba(46,228,214,0.08) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cta-inner img {
  width: 72px; height: 72px;
  border-radius: 18px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.5);
}
.cta-inner h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15;
}
.cta-inner p {
  color: var(--muted);
  margin-top: 6px;
  font-size: 15px;
}
.cta-inner > div { flex: 1; min-width: 240px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #05070f;
  border-top: 1px solid var(--border);
  padding: 28px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
}
.footer-brand img { width: 28px; height: 28px; border-radius: 7px; }
.footer-links {
  display: flex; gap: 18px;
  color: var(--muted);
  font-size: 14px;
}
.footer-links a:hover { color: var(--text); }
.footer-legal {
  color: var(--muted-2);
  font-size: 12.5px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
