/* ============ DESIGN TOKENS ============ */
:root {
  --violet: #7c3aed;
  --violet-deep: #5b21b6;
  --magenta: #d946ef;
  --pink: #ec4899;
  --blue: #4f46e5;

  --grad: linear-gradient(120deg, #4f46e5 0%, #7c3aed 35%, #d946ef 70%, #ec4899 100%);
  --grad-soft: linear-gradient(120deg, #7c3aed, #d946ef);

  --bg: #ffffff;
  --bg-alt: #faf8ff;
  --surface: #ffffff;
  --ink: #1a1530;
  --ink-soft: #5b5670;
  --line: #ece8f7;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 20px rgba(124, 58, 237, 0.08);
  --shadow-md: 0 18px 50px rgba(124, 58, 237, 0.14);
  --shadow-lg: 0 30px 80px rgba(124, 58, 237, 0.20);

  --maxw: 1160px;
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad); color: #fff;
  background-size: 180% 180%; box-shadow: 0 10px 30px rgba(124,58,237,.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(217,70,239,.45); background-position: 100% 0; }
.btn-ghost {
  background: rgba(124,58,237,.06); color: var(--violet);
  border: 1px solid var(--line);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(124,58,237,.12); }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: all .3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { filter: drop-shadow(0 4px 10px rgba(124,58,237,.3)); }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; letter-spacing: -0.03em; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 500; color: var(--ink-soft); transition: color .2s; position: relative; }
.nav-links a:not(.nav-cta):hover { color: var(--violet); }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad); transition: width .25s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: var(--grad); color: #fff !important; padding: 10px 22px; border-radius: 999px; font-weight: 600; box-shadow: 0 8px 22px rgba(124,58,237,.3); }
.nav-cta:hover { transform: translateY(-2px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; animation: float 18s ease-in-out infinite; }
.blob-1 { width: 520px; height: 520px; background: radial-gradient(circle, #d946ef, transparent 70%); top: -120px; right: -80px; }
.blob-2 { width: 460px; height: 460px; background: radial-gradient(circle, #7c3aed, transparent 70%); bottom: -140px; left: -100px; animation-delay: -6s; }
.blob-3 { width: 360px; height: 360px; background: radial-gradient(circle, #4f46e5, transparent 70%); top: 30%; left: 40%; animation-delay: -12s; opacity: .35; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.1); }
  66% { transform: translate(-30px,20px) scale(.95); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(124,58,237,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(124,58,237,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
}
.particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(124,58,237,.07); border: 1px solid var(--line);
  color: var(--violet); font-weight: 600; font-size: .85rem;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 0 0 rgba(217,70,239,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(217,70,239,.5);} 70%{box-shadow:0 0 0 10px rgba(217,70,239,0);} 100%{box-shadow:0 0 0 0 rgba(217,70,239,0);} }

.hero-title { font-size: clamp(2.4rem, 5.2vw, 4rem); margin-bottom: 22px; }
.hero-sub { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ink-soft); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-trust { display: flex; align-items: center; gap: 22px; }
.trust-item strong { font-family: var(--font-head); font-size: 1.7rem; display: block; line-height: 1; }
.trust-item span { font-size: .82rem; color: var(--ink-soft); }
.hero-trust .divider { width: 1px; height: 34px; background: var(--line); }

/* ============ HERO 3D SCENE ============ */
.hero-visual { display: flex; justify-content: center; perspective: 1100px; }
.scene-3d { position: relative; width: 400px; height: 400px; max-width: 100%; }
.stage {
  position: absolute; inset: 0; transform-style: preserve-3d;
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
  animation: stage-bob 7s ease-in-out infinite;
}
@keyframes stage-bob {
  0%,100% { transform: rotateX(8deg) rotateY(-12deg) translateY(0); }
  50%     { transform: rotateX(12deg) rotateY(-6deg) translateY(-14px); }
}

/* shared depth helper */
.logo3d, .float-chip, .float-tile, .ring { transform-style: preserve-3d; }

/* depth rings */
.ring {
  position: absolute; top: 50%; left: 50%; width: 320px; height: 320px;
  margin: -160px 0 0 -160px; border-radius: 50%;
  border: 1.5px dashed rgba(124,58,237,.25);
  transform: translateZ(var(--z)) rotateX(72deg);
}
.ring-1 { animation: ring-spin 26s linear infinite; }
.ring-2 { width: 240px; height: 240px; margin: -120px 0 0 -120px; border-color: rgba(217,70,239,.3); animation: ring-spin 18s linear infinite reverse; }
@keyframes ring-spin { from { transform: translateZ(var(--z)) rotateX(72deg) rotateZ(0); } to { transform: translateZ(var(--z)) rotateX(72deg) rotateZ(360deg); } }

/* soft glow halo behind the diamond */
.gem-glow {
  position: absolute; top: 50%; left: 50%; width: 280px; height: 280px;
  margin: -140px 0 0 -140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,31,150,.5), rgba(124,92,255,.28) 42%, transparent 70%);
  filter: blur(10px); transform: translateZ(-40px);
  animation: glow-pulse 4.5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { opacity:.75; transform: translateZ(-40px) scale(1); }
  50%     { opacity:1;   transform: translateZ(-40px) scale(1.1); }
}

/* ---- 3D extruded diamond (the SoftAi mark, spinning) ---- */
.logo3d {
  position: absolute; top: 50%; left: 50%;
  width: 230px; height: 230px; margin: -115px 0 0 -115px;
  transform-style: preserve-3d;
  animation: gem-spin 11s cubic-bezier(.6,0,.4,1) infinite, gem-bob 5s ease-in-out infinite;
}
@keyframes gem-spin {
  0%   { transform: rotateX(8deg) rotateY(0deg); }
  100% { transform: rotateX(8deg) rotateY(360deg); }
}
@keyframes gem-bob {
  0%,100% { margin-top: -115px; }
  50%     { margin-top: -127px; }
}
.logo3d .layer {
  position: absolute; inset: 0;
  background: url('assets/logo-diamond.svg') center/contain no-repeat;
  transform: translateZ(var(--d));
  -webkit-backface-visibility: visible; backface-visibility: visible;
}
.logo3d .layer:last-of-type {
  filter: drop-shadow(0 18px 30px rgba(124,58,237,.45));
}
/* glossy light sweep on the front face */
.logo3d-shine {
  position: absolute; inset: 0; transform: translateZ(2px);
  clip-path: polygon(50% 4%, 96% 50%, 50% 96%, 4% 50%);
  background: linear-gradient(118deg, transparent 38%, rgba(255,255,255,.7) 50%, transparent 62%);
  background-size: 280% 280%;
  mix-blend-mode: screen;
  animation: shine-sweep 4.5s ease-in-out infinite;
}
@keyframes shine-sweep {
  0%      { background-position: 140% 0; }
  55%,100%{ background-position: -70% 0; }
}
/* soft mirror reflection on the floor */
.logo3d-reflection {
  position: absolute; top: 50%; left: 50%; width: 200px; height: 70px;
  margin: 120px 0 0 -100px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124,58,237,.28), transparent 70%);
  filter: blur(7px); transform: translateZ(-30px);
}

/* ---- floating glass chips ---- */
.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.82); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7); box-shadow: var(--shadow-md);
  padding: 9px 15px; border-radius: 14px; font-size: .85rem; font-weight: 600; white-space: nowrap;
  transform: translateZ(var(--z));
  animation: chip-float 6s ease-in-out infinite;
}
.float-chip span { color: var(--violet); }
.fc-1 { top: 6%;  left: -6%;  animation-delay: -1s; }
.fc-2 { top: 18%; right: -10%; animation-delay: -3s; }
.fc-3 { bottom: 16%; left: -10%; animation-delay: -2s; }
.fc-4 { bottom: 6%; right: -4%; animation-delay: -4s; }
@keyframes chip-float {
  0%,100% { transform: translateZ(var(--z)) translateY(0); }
  50%     { transform: translateZ(var(--z)) translateY(-12px); }
}

/* ---- floating info tiles ---- */
.float-tile {
  position: absolute; background: rgba(255,255,255,.82);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7); box-shadow: var(--shadow-md);
  padding: 11px 15px; border-radius: 14px; font-size: .82rem; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  transform: translateZ(var(--z)); animation: chip-float 7s ease-in-out infinite;
}
.float-tile strong { font-family: var(--font-head); font-size: 1.1rem; }
.ft-1 { bottom: 30%; right: -16%; animation-delay: -2.5s; }
.ft-2 { top: 34%; left: -16%; animation-delay: -1.5s; }
.tile-dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.18); }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-cue span {
  display: block; width: 26px; height: 42px; border: 2px solid var(--line); border-radius: 14px; position: relative;
}
.scroll-cue span::after {
  content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 8px; background: var(--violet); border-radius: 3px; animation: scrolldot 1.8s infinite;
}
@keyframes scrolldot { 0%{opacity:0;top:8px;} 30%{opacity:1;} 60%{opacity:0;top:22px;} 100%{opacity:0;} }

/* ============ SECTIONS ============ */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .12em; color: var(--magenta); margin-bottom: 14px;
}
.section-head h2, .perche-text h2, .contact-info h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 16px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ============ CARDS / SERVIZI ============ */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius); padding: 1.5px;
  background: var(--grad); opacity: 0; transition: opacity .3s;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(124,58,237,.12), rgba(217,70,239,.12));
  color: var(--violet); margin-bottom: 20px;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 16px; }
.card-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.card-list li { font-size: .87rem; color: var(--ink-soft); padding-left: 22px; position: relative; }
.card-list li::before { content: '✓'; position: absolute; left: 0; color: var(--magenta); font-weight: 700; }

/* ============ PERCHÉ ============ */
.perche-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.perche-text p { color: var(--ink-soft); margin-bottom: 28px; font-size: 1.05rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.fcheck {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad); color: #fff; font-weight: 700; font-size: .85rem;
}
.feature-list strong { font-family: var(--font-head); }
.feature-list div { font-size: .95rem; color: var(--ink-soft); }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .3s;
}
.stat:hover { transform: translateY(-6px); }
.stat strong { font-family: var(--font-head); font-size: 2.6rem; display: block; line-height: 1; }
.stat strong { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { color: var(--ink-soft); font-size: .9rem; margin-top: 8px; display: block; }

/* ============ TESTIMONIANZE ============ */
.cards .testimonial {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); grid-column: span 1.33;
  transition: transform .3s, box-shadow .3s;
}
#recensioni .cards { grid-template-columns: repeat(3, 1fr); }
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial p { font-size: 1rem; color: var(--ink); margin-bottom: 22px; }
.who { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad); color: #fff; font-weight: 700; font-family: var(--font-head);
}
.who strong { display: block; font-family: var(--font-head); }
.who small { color: var(--ink-soft); }

/* ============ CONTATTI ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-info p { color: var(--ink-soft); margin-bottom: 28px; font-size: 1.05rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-size: 1rem; }
.contact-list .ci {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(124,58,237,.08); font-size: 1.1rem;
}
.contact-list a:hover { color: var(--violet); }

.contact-form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .85rem; font-weight: 600; font-family: var(--font-head); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: .98rem; padding: 13px 16px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fdfcff;
  color: var(--ink); transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--violet); box-shadow: 0 0 0 4px rgba(124,58,237,.1);
}
.form-note { font-size: .8rem; color: var(--ink-soft); text-align: center; }
.form-or { display: flex; align-items: center; gap: 12px; color: var(--ink-soft); font-size: .82rem; }
.form-or::before, .form-or::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.booking-embed {
  border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
  background: #faf8ff; box-shadow: inset 0 0 0 1px rgba(124,58,237,.03);
}
.booking-embed iframe { display: block; width: 100%; height: 600px; border: 0; }
@media (max-width: 520px) { .booking-embed iframe { height: 560px; } }

/* ============ FOOTER ============ */
.footer { background: #14102b; color: #cfc9e8; padding: 60px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer .brand-name { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: .92rem; color: #9d96bf; max-width: 320px; }
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer-col a { display: block; color: #9d96bf; margin-bottom: 10px; font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem; color: #8780a8;
}

/* ============ TOAST ============ */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(140%);
  background: #14102b; color: #fff; padding: 14px 24px; border-radius: 999px;
  box-shadow: var(--shadow-lg); font-weight: 500; font-size: .92rem; z-index: 200;
  transition: transform .4s cubic-bezier(.2,.8,.2,1); max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.ok { background: linear-gradient(120deg, #7c3aed, #d946ef); }
.toast.err { background: #be123c; }

/* ============ REVEAL ANIMATIONS ============ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  #recensioni .cards { grid-template-columns: 1fr; }
  .perche-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: #fff; flex-direction: column; justify-content: center; gap: 28px;
    transform: translateX(100%); transition: transform .35s ease; box-shadow: var(--shadow-lg);
    padding: 40px;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; z-index: 110; }
  .hero { padding-top: 120px; }
  .scene-3d { width: 300px; height: 300px; }
}
@media (max-width: 520px) {
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-trust { gap: 14px; }
  .trust-item strong { font-size: 1.4rem; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
  .blob, .logo3d, .logo3d-shine, .stage, .ring, .gem-glow, .float-chip, .float-tile { animation: none !important; }
  .logo3d { transform: rotateX(8deg) rotateY(-22deg); margin-top: -115px; }
  .stage { transform: rotateX(8deg) rotateY(-12deg); }
}
