/* ============================================================
   PRISM WEB SECURITY — Global CSS v3.1
   Fonts: Outfit (headings) · Inter (body) · Share Tech Mono (labels)
   Icons: Font Awesome 6 (loaded via functions.php)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Share+Tech+Mono&display=swap');

/* ── Design Tokens ── */
:root {
  --prism-bg:         #07030f;
  --prism-surface:    #0e0a1a;
  --prism-card:       #130d22;
  --prism-border:     rgba(139,92,246,0.18);
  --prism-border-dim: rgba(139,92,246,0.08);
  --prism-violet:     #8b5cf6;
  --prism-violet-l:   #a78bfa;
  --prism-violet-d:   #6d28d9;
  --prism-cyan:       #22d3ee;
  --prism-neon:       #39ff14;
  --prism-red:        #f43f5e;
  --prism-amber:      #f59e0b;
  --prism-text:       #e2d9f3;
  --prism-muted:      #8b7aa8;
  --prism-white:      #f8f4ff;
  --prism-glass-bg:   rgba(19,13,34,0.65);
  --prism-glass-blur: blur(14px);
  --prism-radius-sm:  8px;
  --prism-radius-md:  12px;
  --prism-radius-lg:  20px;
  --prism-font-head:  'Outfit', sans-serif;
  --prism-font-body:  'Inter', sans-serif;
  --prism-font-mono:  'Share Tech Mono', monospace;
  --prism-pad:        clamp(24px, 5vw, 80px);
  --prism-nav-h:      68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--prism-bg);
  color: var(--prism-text);
  font-family: var(--prism-font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--prism-violet-l); text-decoration: none; transition: color .2s; }
a:hover { color: var(--prism-cyan); }

/* dot grid background */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(139,92,246,0.1) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ════════════════════════════════════════
   BOOT SCREEN
════════════════════════════════════════ */
#prism-boot {
  position: fixed; inset: 0;
  background: #000;
  z-index: 999999;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: clamp(32px, 8vw, 120px);
  animation: prismBootFade 0s 3s forwards;
  transform: translateZ(0);
}
@keyframes prismBootFade {
  to { opacity: 0; pointer-events: none; visibility: hidden; }
}
.prism-boot-line {
  font-family: var(--prism-font-mono);
  font-size: clamp(11px, 1.4vw, 14px);
  line-height: 2.2; letter-spacing: 1px;
  opacity: 0; color: var(--prism-neon);
}
.prism-boot-line.dim { color: rgba(57,255,20,0.35); }
.prism-boot-line.hi {
  color: var(--prism-white);
  font-family: var(--prism-font-head);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700; letter-spacing: 3px; margin-top: 20px;
}
.prism-boot-line.hi::after {
  content: '|'; color: var(--prism-violet-l); margin-left: 4px;
  animation: prismBlink .7s step-end infinite;
}
.prism-boot-line:nth-child(1) { animation: prismBootShow .01s 0.10s forwards; }
.prism-boot-line:nth-child(2) { animation: prismBootShow .01s 0.45s forwards; }
.prism-boot-line:nth-child(3) { animation: prismBootShow .01s 0.80s forwards; }
.prism-boot-line:nth-child(4) { animation: prismBootShow .01s 1.15s forwards; }
.prism-boot-line:nth-child(5) { animation: prismBootShow .01s 1.55s forwards; }
.prism-boot-line:nth-child(6) { animation: prismBootShow .01s 2.00s forwards; }
@keyframes prismBootShow { to { opacity: 1; } }
@keyframes prismBlink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ════════════════════════════════════════
   NAVIGATION (fixed, above Elementor)
════════════════════════════════════════ */
#prism-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 99999; height: var(--prism-nav-h);
  background: rgba(7,3,15,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--prism-border-dim);
  display: flex; align-items: center;
  padding: 0 var(--prism-pad); gap: 40px;
  transform: translateZ(0);
}

/* Logo */
.pnav-logo {
  font-family: var(--prism-font-head);
  font-size: 20px; font-weight: 800; letter-spacing: -0.5px;
  color: var(--prism-white); text-decoration: none;
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.pnav-logo-icon {
  width: 30px; height: 30px; flex-shrink: 0; position: relative;
  background: linear-gradient(135deg, var(--prism-violet), var(--prism-cyan));
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.pnav-logo-icon::after {
  content: ''; position: absolute;
  top: 4px; left: 4px; right: 4px; bottom: 1px;
  background: #000;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

/* Nav links */
.pnav-links { display: flex; gap: 4px; list-style: none; flex: 1; }
.pnav-links a {
  font-family: var(--prism-font-body);
  font-size: 14px; font-weight: 500; color: var(--prism-muted);
  padding: 8px 14px; border-radius: var(--prism-radius-sm);
  transition: all .2s;
}
.pnav-links a:hover { color: var(--prism-white); background: rgba(139,92,246,0.1); }
.pnav-links a.current { color: var(--prism-violet-l); }

/* Nav right */
.pnav-right { margin-left: auto; display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.pnav-status {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--prism-font-mono); font-size: 11px; letter-spacing: 1.5px;
  color: var(--prism-neon); white-space: nowrap;
}
.pnav-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--prism-neon); box-shadow: 0 0 8px var(--prism-neon);
  animation: prismPulse 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes prismPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.8)} }

.pnav-clock {
  font-family: var(--prism-font-mono); font-size: 13px;
  color: var(--prism-muted); letter-spacing: 1px; white-space: nowrap;
}

.pnav-cta {
  font-family: var(--prism-font-body); font-size: 14px; font-weight: 600;
  color: #fff; background: var(--prism-violet);
  padding: 9px 20px; border-radius: var(--prism-radius-sm);
  transition: all .2s; white-space: nowrap;
}
.pnav-cta:hover { background: var(--prism-violet-l); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(139,92,246,0.4); }

/* Burger */
.pnav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.pnav-burger span { display: block; width: 22px; height: 2px; background: var(--prism-violet-l); border-radius: 2px; transition: transform .3s, opacity .3s; }
.pnav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pnav-burger.open span:nth-child(2) { opacity: 0; }
.pnav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.pnav-drawer {
  position: fixed; top: var(--prism-nav-h); left: 0; right: 0;
  background: rgba(7,3,15,0.98);
  border-bottom: 1px solid var(--prism-border-dim);
  padding: 20px var(--prism-pad) 28px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-110%); transition: transform .3s ease;
  z-index: 99998;
}
.pnav-drawer.open { transform: translateY(0); }
.pnav-drawer a {
  font-size: 16px; font-weight: 500; color: var(--prism-muted);
  padding: 12px 16px; border-radius: var(--prism-radius-sm); transition: all .2s;
}
.pnav-drawer a:hover { color: var(--prism-white); background: rgba(139,92,246,0.1); }
.pnav-drawer .pnav-cta { margin-top: 10px; text-align: center; display: block; }

/* Offset page content below fixed nav */
.elementor-section:first-child,
.e-con:first-child { margin-top: 0 !important; }

/* ════════════════════════════════════════
   TICKER
════════════════════════════════════════ */
.prism-ticker-wrap {
  background: var(--prism-surface);
  border-top: 1px solid var(--prism-border-dim);
  border-bottom: 1px solid var(--prism-border-dim);
  padding: 13px 0; overflow: hidden; white-space: nowrap;
  position: relative; z-index: 10;
}
.prism-ticker {
  display: inline-flex; gap: 48px;
  animation: prismTicker 30s linear infinite;
  font-family: var(--prism-font-mono);
  font-size: 12px; letter-spacing: 2px;
  color: var(--prism-muted); text-transform: uppercase;
}
.prism-ticker .t-hi { color: var(--prism-violet-l); }
.prism-ticker .t-ok { color: var(--prism-neon); }
@keyframes prismTicker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ════════════════════════════════════════
   UTILITY CLASSES (for use in Elementor CSS classes field)
════════════════════════════════════════ */

/* Section backgrounds */
.prism-bg-dark    { background: var(--prism-bg) !important; }
.prism-bg-surface { background: var(--prism-surface) !important; }
.prism-bg-deeper  { background: #050310 !important; }

/* Hero section */
.prism-hero-section {
  position: relative; overflow: hidden;
  background: var(--prism-bg) !important;
}
.prism-hero-section::after {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.15) 0%, rgba(34,211,238,0.05) 40%, transparent 70%);
  border-radius: 50%; pointer-events: none;
  animation: prismHeroGlow 8s ease-in-out infinite alternate;
}
@keyframes prismHeroGlow { from{transform:scale(1)} to{transform:scale(1.12) rotate(12deg)} }

/* ── Stat box ── */
.prism-stat-box {
  background: var(--prism-glass-bg);
  border: 1px solid var(--prism-border);
  border-left: 3px solid var(--prism-violet);
  border-radius: var(--prism-radius-md);
  padding: 20px 28px;
  backdrop-filter: var(--prism-glass-blur);
  transition: border-color .3s, transform .3s;
}
.prism-stat-box:hover { border-left-color: var(--prism-cyan); transform: translateY(-2px); }
.prism-stat-num {
  font-family: var(--prism-font-head);
  font-size: 44px; font-weight: 800; color: var(--prism-white); line-height: 1; letter-spacing: -1px;
}
.prism-stat-num .accent { color: var(--prism-violet-l); }
.prism-stat-label {
  font-family: var(--prism-font-mono); font-size: 11px; letter-spacing: 2px;
  color: var(--prism-muted); text-transform: uppercase; margin-top: 5px;
}

/* ── Card (glassmorphism) ── */
.prism-card {
  background: var(--prism-glass-bg);
  border: 1px solid var(--prism-border);
  border-radius: var(--prism-radius-lg);
  padding: 32px; position: relative; overflow: hidden;
  backdrop-filter: var(--prism-glass-blur);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.prism-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--prism-violet), transparent);
  opacity: 0; transition: opacity .3s;
}
.prism-card:hover { border-color: rgba(139,92,246,0.5); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(139,92,246,0.15); }
.prism-card:hover::before { opacity: 1; }

/* ── Card icon box ── */
.prism-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--prism-radius-md);
  background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.prism-icon-wrap i, .prism-icon-wrap svg { color: var(--prism-violet-l); font-size: 22px; }

/* ── Section label pill ── */
.prism-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--prism-font-mono); font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--prism-violet-l);
  background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.22);
  padding: 6px 16px; border-radius: 20px;
}
.prism-label::before { content: '◈'; font-size: 10px; }

/* ── Plan card ── */
.prism-plan-card {
  background: var(--prism-glass-bg);
  border: 1px solid var(--prism-border);
  border-radius: var(--prism-radius-lg);
  padding: 40px; position: relative;
  backdrop-filter: var(--prism-glass-blur);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}
.prism-plan-card:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(139,92,246,0.18); }
.prism-plan-card.prism-featured {
  border-color: var(--prism-violet);
  background: rgba(139,92,246,0.07);
}
.prism-plan-card.prism-featured::before {
  content: 'PIÙ POPOLARE';
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--prism-violet); color: #fff;
  font-family: var(--prism-font-mono); font-size: 10px; letter-spacing: 2px;
  padding: 4px 18px; border-radius: 20px; white-space: nowrap;
}
.prism-plan-price {
  font-family: var(--prism-font-head);
  font-size: 52px; font-weight: 800; color: var(--prism-white);
  letter-spacing: -2px; line-height: 1;
}
.prism-plan-price .period { font-size: 20px; color: var(--prism-muted); font-weight: 400; letter-spacing: 0; }
.prism-plan-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--prism-text); padding: 10px 0;
  border-bottom: 1px solid rgba(139,92,246,0.08);
}
.prism-plan-feature i { color: var(--prism-neon); font-size: 14px; margin-top: 1px; flex-shrink: 0; }

/* ── Metric box ── */
.prism-metric-box { text-align: center; padding: 36px 20px; }
.prism-metric-val {
  font-family: var(--prism-font-head);
  font-size: clamp(40px,5vw,60px); font-weight: 800;
  color: var(--prism-white); letter-spacing: -2px; line-height: 1;
}
.prism-metric-val .accent { color: var(--prism-violet-l); }
.prism-metric-label { font-size: 13px; color: var(--prism-muted); margin-top: 8px; }

/* ── Trust item ── */
.prism-trust-item {
  text-align: center; padding: 32px 20px;
  background: var(--prism-glass-bg); border: 1px solid var(--prism-border);
  border-radius: var(--prism-radius-md);
  transition: border-color .3s, transform .3s;
}
.prism-trust-item:hover { border-color: rgba(139,92,246,0.4); transform: translateY(-4px); }
.prism-trust-item i { font-size: 28px; color: var(--prism-violet-l); margin-bottom: 14px; display: block; }
.prism-trust-title { font-family: var(--prism-font-head); font-size: 16px; font-weight: 700; color: var(--prism-white); margin-bottom: 8px; }
.prism-trust-text { font-size: 13px; color: var(--prism-muted); line-height: 1.6; }

/* ── Testimonial card ── */
.prism-testi-card {
  background: var(--prism-glass-bg); border: 1px solid var(--prism-border);
  border-radius: var(--prism-radius-lg); padding: 28px;
  backdrop-filter: var(--prism-glass-blur); transition: border-color .3s;
  height: 100%;
}
.prism-testi-card:hover { border-color: rgba(139,92,246,0.4); }
.prism-testi-stars { color: var(--prism-amber); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.prism-testi-quote { font-family: var(--prism-font-head); font-size: 60px; color: var(--prism-violet); opacity: .15; line-height: .8; margin-bottom: -12px; }
.prism-testi-text { font-size: 15px; color: var(--prism-text); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.prism-testi-sep { height: 1px; background: var(--prism-border-dim); margin-bottom: 18px; }
.prism-testi-author { display: flex; align-items: center; gap: 12px; }
.prism-testi-avatar {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(139,92,246,0.15); border: 1px solid rgba(139,92,246,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--prism-font-mono); font-size: 12px; color: var(--prism-violet-l); flex-shrink: 0;
}
.prism-testi-name { font-weight: 600; color: var(--prism-white); font-size: 14px; }
.prism-testi-role { font-size: 12px; color: var(--prism-muted); margin-top: 2px; }

/* ── Step number ── */
.prism-step-num {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.28);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--prism-font-head); font-size: 20px; font-weight: 800;
  color: var(--prism-violet-l); transition: all .3s;
}
.prism-card:hover .prism-step-num { background: var(--prism-violet); color: #fff; border-color: var(--prism-violet); }

/* ── FAQ ── */
.prism-faq-item { border-bottom: 1px solid var(--prism-border-dim); }
.prism-faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  font-family: var(--prism-font-head); font-size: clamp(16px,2vw,19px); font-weight: 600;
  color: var(--prism-text); text-align: left;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: color .2s;
}
.prism-faq-btn:hover { color: var(--prism-violet-l); }
.prism-faq-icon { font-size: 22px; color: var(--prism-violet); transition: transform .3s; flex-shrink: 0; line-height: 1; }
.prism-faq-item.open .prism-faq-icon { transform: rotate(45deg); }
.prism-faq-answer {
  font-size: 15px; color: var(--prism-muted); line-height: 1.8;
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s;
}
.prism-faq-item.open .prism-faq-answer { max-height: 300px; padding-bottom: 24px; }

/* ── Why-section big number background ── */
.prism-why-num {
  font-family: var(--prism-font-head); font-size: 80px; font-weight: 900;
  color: rgba(139,92,246,0.06); line-height: 1; transition: color .3s;
  user-select: none;
}
.prism-card:hover .prism-why-num { color: rgba(139,92,246,0.14); }

/* ── Buttons ── */
.prism-btn,
.elementor-button.prism-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--prism-font-body) !important; font-size: 15px !important; font-weight: 600 !important;
  color: #fff !important; background: var(--prism-violet) !important;
  padding: 13px 30px !important; border-radius: var(--prism-radius-sm) !important;
  border: none !important; transition: all .2s !important; cursor: pointer;
}
.prism-btn:hover,
.elementor-button.prism-btn:hover { background: var(--prism-violet-l) !important; color: #fff !important; transform: translateY(-2px) !important; box-shadow: 0 12px 32px rgba(139,92,246,0.4) !important; }

.prism-btn-ghost,
.elementor-button.prism-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--prism-font-body) !important; font-size: 15px !important; font-weight: 600 !important;
  color: var(--prism-violet-l) !important; background: transparent !important;
  padding: 12px 28px !important; border-radius: var(--prism-radius-sm) !important;
  border: 1.5px solid rgba(139,92,246,0.4) !important; transition: all .2s !important;
}
.prism-btn-ghost:hover,
.elementor-button.prism-btn-ghost:hover { color: #fff !important; border-color: var(--prism-violet) !important; background: rgba(139,92,246,0.1) !important; }

/* ── Divider ── */
.prism-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(139,92,246,0.3), transparent); border: none; margin: 0; }

/* ── Reveal animation ── */
.prism-reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.prism-reveal.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════
   ELEMENTOR INTEGRATION
════════════════════════════════════════ */

/* Remove Elementor default padding on inner sections */
.elementor-section .elementor-container { max-width: 1200px; }
.elementor-section { position: relative; z-index: 1; }
.elementor-widget-wrap { position: relative; z-index: 1; }

/* Elementor Heading widget — force Outfit font */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--prism-font-head) !important;
}

/* Elementor Text Editor — readable defaults */
.elementor-widget-text-editor p { line-height: 1.75; }

/* Elementor Icon Box — Prism card style */
.elementor-widget-icon-box.prism-card .elementor-icon-box-wrapper { align-items: flex-start; }
.elementor-widget-icon-box.prism-card .elementor-icon { margin-bottom: 0; }
.elementor-widget-icon-box.prism-card .elementor-icon-box-icon {
  width: 52px; height: 52px; border-radius: var(--prism-radius-md);
  background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}

/* ════════════════════════════════════════
   CONTACT FORM 7
════════════════════════════════════════ */
.wpcf7 { width: 100%; }
.wpcf7-form { display: flex; flex-direction: column; gap: 16px; }
.wpcf7-form p { margin: 0; }
.wpcf7-form label { display: block; font-family: var(--prism-font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--prism-muted); margin-bottom: 7px; }

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  background: rgba(139,92,246,0.05);
  border: 1px solid var(--prism-border);
  border-radius: var(--prism-radius-sm);
  color: var(--prism-text);
  font-family: var(--prism-font-body); font-size: 15px;
  padding: 13px 16px; outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--prism-violet);
  background: rgba(139,92,246,0.08);
  color: var(--prism-white);
}
.wpcf7-form textarea { resize: vertical; min-height: 130px; }

.wpcf7-form input[type="submit"],
.wpcf7-submit {
  font-family: var(--prism-font-body); font-size: 15px; font-weight: 600;
  color: #fff; background: var(--prism-violet);
  border: none; border-radius: var(--prism-radius-sm);
  padding: 14px 32px; cursor: pointer; width: auto;
  transition: all .2s;
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover { background: var(--prism-violet-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,92,246,0.4); }

.wpcf7-not-valid-tip { color: var(--prism-red); font-size: 12px; margin-top: 4px; }
.wpcf7-response-output { border-radius: var(--prism-radius-sm); padding: 12px 16px; font-size: 14px; margin-top: 8px; border: 1px solid; }
.wpcf7-mail-sent-ok { border-color: var(--prism-neon); color: var(--prism-neon); background: rgba(57,255,20,0.07); }
.wpcf7-mail-sent-ng, .wpcf7-aborted { border-color: var(--prism-red); color: var(--prism-red); background: rgba(244,63,94,0.07); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pnav-links { display: none; }
  .pnav-cta { display: none; }
  .pnav-burger { display: flex; }
  .pnav-status { display: none; }
}
@media (max-width: 768px) {
  :root { --prism-nav-h: 60px; }
  .pnav-logo { font-size: 18px; }
  .prism-plan-price { font-size: 40px; }
  .prism-stat-num { font-size: 36px; }
}
@media (max-width: 480px) {
  .pnav-clock { display: none; }
}
