/* ══════════════════════════════════════════════════════════════════
   Angelo D'Errico — IT Consultant Freelance
   Design system: teal (#0d9488) + amber (#f59e0b), Inter, WANDEM-inspired
   ══════════════════════════════════════════════════════════════════ */

:root {
  --primary:        #0d9488;
  --primary-600:    #0d9488;
  --primary-700:    #0f766e;
  --primary-800:    #115e59;
  --primary-light:  #14b8a6;
  --primary-300:    #5eead4;
  --accent:         #f59e0b;
  --accent-dark:    #d97706;

  --bg:             #ffffff;
  --bg-soft:        #f6f8f9;
  --bg-alt:         #f0fdfa;
  --surface:        #ffffff;
  --text:           #0f1c2b;
  --text-soft:      #475569;
  --text-mute:      #64748b;
  --border:         #e5eaee;
  --border-soft:    #eef2f5;

  --wa:             #25d366;
  --wa-dark:        #128c7e;

  --radius:         14px;
  --radius-lg:      20px;
  --radius-sm:      10px;
  --shadow-sm:      0 1px 2px rgba(15,28,43,.06), 0 1px 3px rgba(15,28,43,.05);
  --shadow-md:      0 6px 18px rgba(15,28,43,.08), 0 2px 6px rgba(15,28,43,.05);
  --shadow-lg:      0 18px 40px rgba(13,148,136,.16), 0 6px 14px rgba(15,28,43,.08);
  --container:      1160px;
  --header-h:       68px;
  --ease:           .25s cubic-bezier(.4,0,.2,1);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:          #0b1220;
    --bg-soft:     #0f1a2b;
    --bg-alt:      #0d1a22;
    --surface:     #111c2e;
    --text:        #eef4f8;
    --text-soft:   #b3c0cf;
    --text-mute:   #8598ab;
    --border:      #22314a;
    --border-soft: #1a273c;
    --shadow-sm:   0 1px 2px rgba(0,0,0,.4);
    --shadow-md:   0 8px 22px rgba(0,0,0,.45);
    --shadow-lg:   0 22px 46px rgba(0,0,0,.55), 0 6px 16px rgba(0,0,0,.4);
  }
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; margin: 0; font-weight: 700; }
p { margin: 0; }
a { color: var(--primary-700); text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(18px, 4vw, 32px); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--primary-700); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top var(--ease);
}
.skip-link:focus { top: 12px; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--primary-700); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 600; font-size: .95rem; line-height: 1;
  padding: 12px 20px; border-radius: 10px; border: 1px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg);
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }
.btn-primary { background: linear-gradient(135deg, var(--primary-light), var(--primary-700)); box-shadow: 0 6px 16px rgba(13,148,136,.28); }
.btn-primary:hover { box-shadow: 0 12px 26px rgba(13,148,136,.36); }
.btn-whatsapp { background: linear-gradient(135deg, var(--wa), var(--wa-dark)); color: #fff; box-shadow: 0 6px 16px rgba(37,211,102,.28); }
.btn-whatsapp:hover { box-shadow: 0 12px 26px rgba(37,211,102,.36); }
.btn-ghost { background: transparent; color: var(--text-soft); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary-light); color: var(--primary-700); background: var(--bg-alt); }
.btn-lg { padding: 15px 26px; font-size: 1rem; }
.btn-sm { padding: 9px 15px; font-size: .875rem; }
.btn-block { width: 100%; }

/* ── Header ─────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand-mark { display: inline-flex; filter: drop-shadow(0 3px 6px rgba(13,148,136,.28)); }
.brand-mark svg { border-radius: 9px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em; }
.brand-text small { font-size: .72rem; color: var(--text-mute); font-weight: 500; letter-spacing: .01em; }

.nav { margin-left: auto; display: flex; gap: 4px; }
.nav a {
  position: relative; padding: 9px 13px; border-radius: 8px;
  color: var(--text-soft); font-weight: 500; font-size: .93rem;
  transition: color var(--ease), background var(--ease);
}
.nav a:hover { color: var(--text); background: var(--bg-alt); text-decoration: none; }
.nav a.active { color: var(--primary-700); }
.nav a.active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px; height: 2px;
  background: var(--primary); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta { display: inline-flex; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 0 10px; background: transparent; border: 1px solid var(--border); border-radius: 10px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: transform var(--ease), opacity var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 9vw, 108px) 0 clamp(48px, 7vw, 84px); }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 82% 8%, rgba(20,184,166,.20), transparent 60%),
    radial-gradient(55% 50% at 8% 92%, rgba(245,158,11,.14), transparent 62%),
    linear-gradient(180deg, var(--bg-alt), var(--bg) 55%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(var(--border-soft) 1px, transparent 1px), linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
          mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
}
.hero-inner { max-width: 860px; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary-700); background: color-mix(in srgb, var(--primary) 12%, transparent);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 22px;
  border: 1px solid color-mix(in srgb, var(--primary) 22%, transparent);
}
.hero-title { font-size: clamp(2.1rem, 5.4vw, 3.75rem); font-weight: 800; margin-bottom: 20px; }
.grad-text { background: linear-gradient(120deg, var(--primary-light), var(--primary-700) 60%, var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1.05rem, 2.1vw, 1.28rem); color: var(--text-soft); max-width: 720px; margin-bottom: 32px; }
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--text-soft); font-weight: 500; }
.hero-badges span { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: color-mix(in srgb, var(--primary) 16%, transparent); color: var(--primary-700); font-size: .72rem; font-weight: 700; }

/* ── Sections ──────────────────────────────────────────────────── */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 680px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; margin-bottom: 14px; }
.section-lead { font-size: 1.08rem; color: var(--text-soft); }

/* ── Grid ──────────────────────────────────────────────────────── */
.grid { display: grid; gap: clamp(16px, 2.4vw, 24px); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Service cards ─────────────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--primary) 30%, transparent); }
.card-icon {
  width: 52px; height: 52px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 16%, transparent), color-mix(in srgb, var(--primary) 6%, transparent));
  color: var(--primary-700); margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.card p { color: var(--text-soft); font-size: .96rem; }

/* ── Stack groups ──────────────────────────────────────────────── */
.stack-grid { align-items: start; }
.stack-group { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.stack-group h3 { display: flex; align-items: center; gap: 10px; font-size: 1.02rem; margin-bottom: 16px; }
.stack-group .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 16%, transparent); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  font-size: .85rem; font-weight: 500; color: var(--text-soft);
  background: var(--bg-alt); border: 1px solid var(--border-soft);
  padding: 6px 12px; border-radius: 100px; transition: all var(--ease);
}
.chips li:hover { color: var(--primary-700); border-color: color-mix(in srgb, var(--primary) 34%, transparent); background: color-mix(in srgb, var(--primary) 8%, transparent); }

/* ── Cloud cards ───────────────────────────────────────────────── */
.cloud-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 30px 20px; box-shadow: var(--shadow-sm); transition: transform var(--ease), box-shadow var(--ease);
}
.cloud-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cloud-logo {
  display: inline-flex; align-items: center; justify-content: center; min-width: 64px; height: 64px; padding: 0 14px;
  border-radius: 16px; font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; margin-bottom: 8px;
  color: var(--c, var(--primary-700));
  background: color-mix(in srgb, var(--c, var(--primary)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--c, var(--primary)) 26%, transparent);
}
.cloud-card strong { font-size: 1.02rem; }
.cloud-card small { color: var(--text-mute); font-size: .85rem; }

/* ── Steps ─────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px, 2vw, 20px); counter-reset: s; }
.steps li { position: relative; background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 24px 20px; box-shadow: var(--shadow-sm); }
.steps li::before { content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 3px; border-radius: 0 0 3px 3px; background: linear-gradient(90deg, var(--primary-light), var(--primary-700)); }
.step-n { display: inline-block; font-size: 1.5rem; font-weight: 800; color: color-mix(in srgb, var(--primary) 55%, var(--text-mute)); margin-bottom: 8px; letter-spacing: -.03em; }
.steps h3 { font-size: 1.04rem; margin-bottom: 7px; }
.steps p { color: var(--text-soft); font-size: .9rem; }

/* ── Contact ───────────────────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(20px, 3vw, 40px); align-items: start; max-width: 980px; margin: 0 auto; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 16px; text-align: left;
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow-sm); color: var(--text);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--primary) 30%, transparent); text-decoration: none; }
.contact-ic { flex: none; width: 50px; height: 50px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.contact-ic-mail { background: linear-gradient(135deg, var(--primary-light), var(--primary-700)); }
.contact-ic-wa { background: linear-gradient(135deg, var(--wa), var(--wa-dark)); }
.contact-meta { display: flex; flex-direction: column; min-width: 0; }
.contact-meta small { color: var(--text-mute); font-size: .8rem; font-weight: 500; }
.contact-meta strong { font-size: .98rem; font-weight: 600; word-break: break-word; }

.contact-form { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: .96rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary-light); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent); }
.field textarea { resize: vertical; min-height: 96px; }
.form-note { margin-top: 12px; font-size: .82rem; color: var(--text-mute); text-align: center; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding: clamp(40px, 6vw, 60px) 0 26px; margin-top: 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-start; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.footer-brand { display: flex; gap: 14px; max-width: 460px; align-items: flex-start; }
.footer-brand strong { font-size: 1.05rem; }
.footer-brand p { color: var(--text-soft); font-size: .92rem; margin-top: 4px; }
.footer-col h4 { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mute); margin: 0 0 13px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--text-soft); font-size: .92rem; font-weight: 500; word-break: break-word; }
.footer-links a:hover { color: var(--primary-700); }
.footer-legal { font-style: normal; color: var(--text-soft); font-size: .92rem; line-height: 1.7; }
.footer-legal strong { display: block; color: var(--text); font-weight: 600; margin-bottom: 2px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; align-items: center; margin-top: 22px; font-size: .82rem; color: var(--text-mute); }
.footer-legal-links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.footer-legal-links a { color: var(--text-mute); font-size: .82rem; font-weight: 500; }
.footer-legal-links a:hover { color: var(--primary-700); }
.footer-legal-links span { color: var(--border); }

/* ── Legal / policy pages ──────────────────────────────────────── */
.legal-page { padding: clamp(32px, 5vw, 56px) 0 clamp(48px, 7vw, 84px); background: var(--bg); }
.legal-content { max-width: 820px; }
.legal-back { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 22px; color: var(--text-soft); font-weight: 500; font-size: .92rem; }
.legal-back:hover { color: var(--primary-700); text-decoration: none; }
.legal-content h1 { font-size: clamp(1.8rem, 4.4vw, 2.5rem); font-weight: 800; margin-bottom: 8px; }
.legal-content .updated { color: var(--text-mute); font-size: .9rem; margin-bottom: 30px; }
.legal-content h2 { font-size: 1.24rem; font-weight: 700; margin: 36px 0 12px; }
.legal-content p { color: var(--text-soft); margin-bottom: 14px; }
.legal-content ul { list-style: disc; padding-left: 22px; margin: 0 0 16px; }
.legal-content li { color: var(--text-soft); margin-bottom: 9px; }
.legal-content a { color: var(--primary-700); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--primary-800); }
.legal-content strong { color: var(--text); font-weight: 600; }
.legal-content em { color: var(--text); font-style: italic; }
.legal-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 20px 24px; margin: 30px 0 0; box-shadow: var(--shadow-sm); }
.legal-card h2 { margin-top: 0; font-size: 1.1rem; }
.legal-card p { margin-bottom: 0; line-height: 1.9; }

/* ── Floating WhatsApp ─────────────────────────────────────────── */
.fab-wa {
  position: fixed; right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--wa), var(--wa-dark)); color: #fff;
  box-shadow: 0 10px 24px rgba(37,211,102,.42); transition: transform var(--ease), box-shadow var(--ease);
}
.fab-wa:hover { transform: scale(1.07) translateY(-2px); box-shadow: 0 14px 30px rgba(37,211,102,.5); }
.fab-wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.6s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45);} 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* ── Toast ─────────────────────────────────────────────────────── */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px);
  background: var(--text); color: var(--bg); padding: 13px 22px; border-radius: 12px; font-size: .92rem; font-weight: 500;
  box-shadow: var(--shadow-lg); z-index: 300; opacity: 0; pointer-events: none; transition: opacity var(--ease), transform var(--ease);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Reveal animation ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  #installBtn { display: none !important; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; margin: 0; flex-direction: column; gap: 2px;
    background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
    padding: 12px 18px 18px; transform: translateY(-130%); transition: transform var(--ease); visibility: hidden;
  }
  .nav.open { transform: translateY(0); visibility: visible; }
  .nav a { padding: 13px 12px; font-size: 1rem; border-radius: 10px; }
  .nav a.active::after { display: none; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .steps { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .eyebrow { font-size: .68rem; letter-spacing: .05em; white-space: normal; line-height: 1.5; }
  .hero-title { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .brand-text small { font-size: .68rem; }
  .contact-meta strong { font-size: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .fab-wa::after { animation: none; }
}
