/* ============================================================
   SafeSphere — SVG Icon System
   Corporate icon utilities — no emoji, all vector
   ============================================================ */

/* Base icon rule — all SVG icons inherit this */
.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: middle;
  pointer-events: none;
}

/* Sizes */
.icon--xs  { width: 14px; height: 14px; }
.icon--sm  { width: 16px; height: 16px; }
.icon--md  { width: 20px; height: 20px; }
.icon--base{ width: 24px; height: 24px; }
.icon--lg  { width: 28px; height: 28px; }
.icon--xl  { width: 36px; height: 36px; }
.icon--2xl { width: 48px; height: 48px; }
.icon--3xl { width: 64px; height: 64px; }

/* Colour variants */
.icon--accent  { stroke: var(--clr-accent); }
.icon--muted   { stroke: var(--clr-text-muted); }
.icon--primary { stroke: var(--clr-text-primary); }
.icon--inherit { stroke: currentColor; }

/* Icon inside a card icon container */
.card__icon svg,
.feature-card__icon svg,
.package-card__icon svg,
.customer-card__icon svg,
.why__point-icon svg,
.value-item__icon svg {
  stroke: var(--clr-accent);
}

/* ── Logo mark SVG ──────────────────────────────────────── */
.nav__logo-mark svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Feature card icon container ────────────────────────── */
.feature-card__icon {
  min-width: 56px;
}

/* ── FAQ chevron SVG ────────────────────────────────────── */
.faq-item__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item__chevron svg {
  width: 14px;
  height: 14px;
  stroke: var(--clr-accent);
  transition: transform var(--t-fast);
}

.faq-item.open .faq-item__chevron svg {
  transform: rotate(180deg);
}

/* ── Back to top SVG ────────────────────────────────────── */
.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: #070d1a;
}

/* ── Trust item check ───────────────────────────────────── */
.hero__trust-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--clr-accent);
  stroke-width: 2.5;
}

/* ── Package feature check ──────────────────────────────── */
.package-card__feature .feat-check {
  width: 18px;
  height: 18px;
  background: var(--clr-accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.package-card__feature .feat-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--clr-accent);
  stroke-width: 2.5;
}

/* ── LBB device illustration ────────────────────────────── */
.lbb__device-svg {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  display: block;
}

/* ── Hero illustration ──────────────────────────────────── */
.hero__illustration {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .hero__illustration { display: none; }
}

/* ── Callout strip icons ────────────────────────────────── */
.callout-strip__item svg {
  width: 14px;
  height: 14px;
  stroke: var(--clr-accent);
  flex-shrink: 0;
}

/* ── Why floating badges (text only now) ────────────────── */
.why__float-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── Stat success icon ──────────────────────────────────── */
.signup-success__icon svg {
  width: 56px;
  height: 56px;
  stroke: var(--clr-accent);
}

/* ── Toast icon ─────────────────────────────────────────── */
.toast__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-accent);
}

/* ── Loader spin ────────────────────────────────────────── */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.icon--spin {
  animation: spin 1s linear infinite;
}
