:root {
  /* Brand colors — ElleMultiverse Brand Identity Pack */
  --space-blue: #0b0c2a;
  --space-blue-2: #14163a;
  --galactic: #7627e0;
  --teal: #2dfcdc;
  --gold: #d1b87e;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(ellipse at top, var(--space-blue-2) 0%, var(--space-blue) 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Decorative cosmic orbs */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--galactic) 0%, transparent 70%);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -300px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

a { color: var(--teal); text-decoration: none; font-weight: 600; }
a:hover { text-decoration: underline; }

/* HEADER */
.site-header {
  position: relative;
  z-index: 10;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.brand-text {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
  background: linear-gradient(120deg, var(--teal), var(--galactic));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-tagline {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav.main-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
nav.main-nav a:hover {
  color: var(--text);
  text-decoration: none;
}
nav.main-nav a.active {
  color: var(--text);
}
nav.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--galactic));
  border-radius: 2px;
}
.nav-cta {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--galactic), var(--teal));
  color: white !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); text-decoration: none; }

/* MAIN */
main {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 0 80px;
}
.hero h1 {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--teal), var(--galactic), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero p.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 36px;
}
.cta-row {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--galactic), var(--teal));
  color: white;
  box-shadow: 0 12px 32px rgba(118, 39, 224, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); text-decoration: none; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b89a5d);
  color: var(--space-blue);
  box-shadow: 0 8px 22px rgba(209, 184, 126, 0.3);
}

/* SECTION */
section {
  padding: 80px 0;
}
section h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 14px;
}
section h2 .accent {
  background: linear-gradient(120deg, var(--teal), var(--galactic));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
section .section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 17px;
}

/* CARDS GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
}
.card .ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--galactic), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.card.gold .ic {
  background: linear-gradient(135deg, var(--gold), #b89a5d);
  color: var(--space-blue);
}
.card.teal .ic {
  background: linear-gradient(135deg, var(--teal), #1cb8a0);
}
.card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.card .meta {
  margin-top: 14px;
  font-size: 13px;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* SETTORI (5 anelli del multiverso) */
.settori {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.settore-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  transition: transform 0.2s;
}
.settore-card:hover { transform: translateY(-3px); }
.settore-card .num {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(120deg, var(--teal), var(--galactic));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.settore-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}
.settore-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

/* PROD ROW (riga prodotto con immagine + testo) */
.prod-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.prod-row.reverse {
  direction: rtl;
}
.prod-row.reverse > * {
  direction: ltr;
}
.prod-row .prod-text h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.prod-row .prod-text .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 12px;
}
.prod-row .prod-text p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 16px;
}
.prod-row .prod-text ul {
  list-style: none;
  margin-bottom: 24px;
}
.prod-row .prod-text ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
}
.prod-row .prod-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}
.prod-row .prod-visual {
  height: 320px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(118, 39, 224, 0.15), rgba(45, 252, 220, 0.10));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.prod-row .prod-visual .glyph {
  font-size: 120px;
  opacity: 0.85;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--galactic) 0%, var(--space-blue-2) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  padding: 48px;
  text-align: center;
  margin: 60px 0;
}
.cta-banner h3 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.cta-banner p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 16px;
}

/* FOOTER */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  margin-top: 80px;
  padding: 50px 24px 30px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}
.foot-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot-col h4 {
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
  font-weight: 800;
}
.foot-col a, .foot-col p {
  display: block;
  color: var(--muted);
  margin: 8px 0;
  font-size: 14px;
}
.foot-col .brand {
  margin-bottom: 14px;
}
.legal {
  max-width: 1200px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* LEGAL/PROSE PAGES */
.prose {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 24px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}
.prose h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 8px;
}
.prose .updated {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-bottom: 30px;
}
.prose h2 {
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  margin: 32px 0 12px;
  text-align: left;
}
.prose strong { color: var(--text); }
.prose ul { padding-left: 22px; margin-bottom: 14px; }
.prose .box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  margin: 20px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: 44px; letter-spacing: -1px; }
  .hero p.lead { font-size: 17px; }
  section { padding: 50px 0; }
  section h2 { font-size: 28px; }
  nav.main-nav { display: none; }
  .prod-row { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .prod-row.reverse { direction: ltr; }
  .prod-row .prod-visual { height: 220px; }
  .foot-row { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 32px 24px; }
  .cta-banner h3 { font-size: 24px; }
  .shop-gallery { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .shop-gallery img { height: 180px !important; }
}

/* Shop gallery — responsive grid of photos */
.shop-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.shop-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: var(--space-blue-2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
}
.shop-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(45, 252, 220, 0.18);
}

/* ====== EM Form (attivazione MyInfinity) — Liquid Glass ====== */
.emform {
  display: block;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Liquid Glass card — multi-layer con highlight specular, inner glow e ombra morbida */
.emform-section {
  position: relative;
  display: block;
  padding: 34px;
  margin-bottom: 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 38%, rgba(255,255,255,0.04) 100%),
    rgba(255,255,255,0.04);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 -1px 0 rgba(255,255,255,0.05) inset,
    0 20px 40px rgba(0,0,0,0.28),
    0 8px 16px rgba(0,0,0,0.18);
  overflow: hidden;
  isolation: isolate;
}
/* Top highlight — riflesso speculare orizzontale come su iOS */
.emform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 0;
  border-radius: 26px 26px 0 0;
}
/* Diagonal sheen — accenno di luce che attraversa il vetro */
.emform-section::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 60%;
  height: 180%;
  background: linear-gradient(115deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 50%);
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 0;
}
.emform-section > * { position: relative; z-index: 1; }

.emform-section-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.emform-section-head h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px 0;
  line-height: 1.2;
}
.emform-section-head p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}
.emform-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.02) 100%),
    linear-gradient(135deg, rgba(118,39,224,0.35), rgba(45,252,220,0.22));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.24) inset,
    0 -1px 0 rgba(0,0,0,0.10) inset,
    0 6px 14px rgba(118,39,224,0.18);
  font-size: 22px;
  line-height: 1;
  overflow: hidden;
}
.emform-icon::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.emform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}
.emform-row {
  display: block;
  min-width: 0;
}
.emform-row.span-2 { grid-column: 1 / -1; }

.emform-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}
.emform-label .req {
  color: var(--teal);
  font-weight: 700;
  margin-left: 2px;
}
.emform-label-hint {
  color: rgba(255,255,255,0.42);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
  font-size: 11.5px;
}

.emform-input {
  display: block;
  width: 100%;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%),
    rgba(11, 12, 42, 0.45);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 -1px 0 rgba(0,0,0,0.18) inset;
}
.emform-input::placeholder { color: rgba(255,255,255,0.32); }
.emform-input:hover {
  border-color: rgba(255,255,255,0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%),
    rgba(11, 12, 42, 0.55);
}
.emform-input:focus {
  border-color: rgba(45, 252, 220, 0.65);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%),
    rgba(11, 12, 42, 0.7);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.14) inset,
    0 0 0 4px rgba(45, 252, 220, 0.15),
    0 4px 18px rgba(45, 252, 220, 0.18);
}
.emform-input.emform-disabled,
.emform-input[readonly] {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(11, 12, 42, 0.3);
}
.emform-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.55;
}
.emform-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%232dfcdc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.emform-select option { background: var(--space-blue); color: var(--text); }

/* Liquid Glass toggle switch */
.emform-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  margin-bottom: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%),
    rgba(11, 12, 42, 0.4);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 -1px 0 rgba(0,0,0,0.15) inset;
}
.emform-toggle:hover {
  border-color: rgba(45, 252, 220, 0.35);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.14) inset,
    0 4px 14px rgba(45, 252, 220, 0.10);
}
.emform-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.emform-toggle-track {
  position: relative;
  width: 50px;
  height: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.04) 100%),
    rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 -1px 2px rgba(0,0,0,0.20) inset;
}
.emform-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #d8dde6 100%);
  border-radius: 50%;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 2px 5px rgba(0,0,0,0.35),
    0 1px 2px rgba(0,0,0,0.25);
  transition: transform 0.28s cubic-bezier(.34,1.36,.64,1), background 0.25s;
}
.emform-toggle input:checked ~ .emform-toggle-track {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 100%),
    linear-gradient(135deg, var(--galactic), var(--teal));
  border-color: rgba(45,252,220,0.5);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.20) inset,
    0 0 0 3px rgba(45, 252, 220, 0.18),
    0 4px 14px rgba(45, 252, 220, 0.20);
}
.emform-toggle input:checked ~ .emform-toggle-track .emform-toggle-thumb {
  transform: translateX(22px);
}
.emform-toggle-text {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

/* Consent checkboxes */
.emform-consent {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.emform-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.emform-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.emform-checkbox-box {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 100%),
    rgba(11, 12, 42, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  margin-top: 1px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 -1px 2px rgba(0,0,0,0.18) inset;
}
.emform-checkbox-box::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #0b0c2a;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.18s ease;
}
.emform-checkbox input:checked ~ .emform-checkbox-box {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0) 100%),
    var(--teal);
  border-color: rgba(255,255,255,0.4);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.30) inset,
    0 0 0 3px rgba(45, 252, 220, 0.18),
    0 4px 12px rgba(45, 252, 220, 0.25);
}
.emform-checkbox input:checked ~ .emform-checkbox-box::after { transform: rotate(45deg) scale(1); }
.emform-checkbox input:focus-visible ~ .emform-checkbox-box {
  box-shadow: 0 0 0 3px rgba(45, 252, 220, 0.25);
}
.emform-checkbox-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.emform-checkbox-text a { color: var(--teal); text-decoration: underline; }
.emform-checkbox-text .req { color: var(--teal); font-weight: 700; margin-left: 2px; }

/* Actions */
.emform-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.emform-submit { min-width: 320px; padding: 16px 32px !important; font-size: 15px !important; }
.emform-hint {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.emform-hint .req { color: var(--teal); font-weight: 700; margin-right: 2px; }
.emform-hint strong { color: var(--text); }

@media (max-width: 720px) {
  .emform-section { padding: 22px; border-radius: 18px; margin-bottom: 16px; }
  .emform-section-head { gap: 12px; margin-bottom: 18px; padding-bottom: 14px; }
  .emform-section-head h3 { font-size: 17px; }
  .emform-icon { width: 38px; height: 38px; font-size: 19px; }
  .emform-grid { grid-template-columns: 1fr; gap: 14px; }
  .emform-row.span-2 { grid-column: auto; }
  .emform-toggle { flex-wrap: wrap; }
  .emform-submit { min-width: 100%; }
}

/* Badge store (App Store / Google Play) */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.badge-row a { display: inline-block; transition: transform 0.2s ease; }
.badge-row a:hover { transform: translateY(-2px); }
.badge-row img { height: 48px; width: auto; display: block; }
