:root {
  --bg: #f6f7fb;
  --radius-xl: clamp(20px, 2vw + 10px, 32px);
  --radius-lg: clamp(16px, 1.5vw + 8px, 28px);
  --radius-md: clamp(12px, 1vw + 6px, 22px);
  --radius-sm: clamp(8px, 0.5vw + 4px, 14px);
  --radius-xs: clamp(4px, 0.5vw + 2px, 10px);
  --surface: #ffffff;
  --card: #f7f8fb;
  --text: #1f2937;
  --muted: #4b5563;
  --violet: #7c3aed;
  --violet-strong: #5b21b6;
  --violet-soft: #a78bfa;
  --accent: #7c3aed;
  --border: #e5e7eb;
  --shadow-ambient: -18px 24px 46px rgba(17, 24, 39, 0.14);
  --shadow-highlight: 14px -14px 28px rgba(255, 255, 255, 0.85);
  --shadow-inset: inset 1px 1px 0 rgba(255, 255, 255, 0.6), inset -1px -1px 0 rgba(148, 163, 184, 0.22);
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "SF Pro Display", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(680px at 82% 8%, #ffffff 0%, #f6f7fb 38%, #e9ecf5 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 12px;
}

h1, h2, h3, h4 {
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  display: inline-block;
  color: #0f172a;
  background: radial-gradient(140% 140% at 82% 8%, #e4e8f0 0%, #4b5563 55%, #111827 100%);
  background-repeat: no-repeat;
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.text-gradient {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}


section {
  position: relative;
  padding: 96px 24px;
}

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: linear-gradient(90deg, rgba(213, 214, 219, 0.632), rgba(224, 226, 234, 0.547));
  border-bottom: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 0 0 clamp(40px, 10vw, 92px) clamp(40px, 10vw, 92px);
  overflow: hidden;
}

.nav {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 24px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  justify-self: start;
}

.brand-name {
  color: var(--text);
}

.brand-my {
  background: linear-gradient(70deg, #271f25, #271f25, #695a657e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.brand-logo-shell {
  width: 72px;
  height: 72px;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #f9fafc, #e9ecf4);
  box-shadow:
    inset 8px 8px 16px rgba(15, 23, 42, 0.14),
    inset -8px -8px 18px rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-top-color: rgba(255, 255, 255, 0.92);
  border-right-color: rgba(230, 230, 230, 0.88);
  border-bottom-color: rgba(210, 210, 210, 0.88);
  border-left-color: rgba(230, 230, 230, 0.88);
  overflow: hidden;
  position: relative;
}

.brand-logo-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2) 45%, rgba(255, 255, 255, 0) 75%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.brand-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170%;
  height: 170%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  aspect-ratio: 1 / 1;
}

.brand-subtle {
  font-weight: 600;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 500;
  flex-wrap: nowrap;
  white-space: nowrap;
  justify-content: center;
  justify-self: center;
  min-width: 0;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(124, 58, 237, 0.08);
  color: var(--text);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: #0f172a;
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow-ambient), var(--shadow-highlight);
  transition: box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-top-color: rgba(255, 255, 255, 0.85);
  border-right-color: rgba(230, 230, 230, 0.9);
  border-bottom-color: rgba(210, 210, 210, 0.9);
  border-left-color: rgba(230, 230, 230, 0.9);
}

.nav-cta:hover {
  box-shadow: -18px 26px 48px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(124, 58, 237, 0.3), var(--shadow-highlight);
  transform: translateY(-1px);
  background: linear-gradient(120deg, #0f172a, rgba(124, 58, 237, 0.08));
}

.hero-prime {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(-1 * var(--nav-height));
  padding: calc(120px + var(--nav-height)) 24px 80px;
  overflow: hidden;
  background: #f7f8fb;
}

.hero-prime-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-prime-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#hero-prime-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-prime-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}

.hero-prime-card {
  position: relative;
  isolation: isolate;
  max-width: 680px;
  width: 100%;
  padding: 42px 46px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.26);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  text-align: center;
}

.hero-prime-card::before {
  content: "";
  position: absolute;
  inset: -140px;
  background: radial-gradient(62% 62% at 50% 50%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 100%);
  filter: blur(26px);
  opacity: 0.9;
  z-index: -1;
}

.label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #f7f8fb;
  border-top: 3px solid #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  border-right: 2px solid rgba(230, 230, 230, 0.9);
  border-bottom: 3px solid rgba(210, 210, 210, 0.9);
  border-left: 2px solid rgba(230, 230, 230, 0.9);
}

.iconfont-wrapper .iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.06);
  color: #6b7280;
  font-size: 12px;
}

.label-text {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #0f172a;
  background: radial-gradient(160% 160% at 82% 8%, #6b7280 0%, #1f2937 60%, #0f172a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-prime h1 {
  font-size: clamp(38px, 5vw, 58px);
  margin-bottom: 14px;
}

.hero-prime .subheadline {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 8px;
}

.hero-prime .tagline {
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 28px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  box-shadow: -22px 30px 55px rgba(15, 23, 42, 0.32), var(--shadow-highlight);
  transition: transform 0.15s ease, box-shadow 0.2s ease, border 0.2s ease;
  border: 2px solid rgba(148, 163, 184, 0.28);
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-top-color: rgba(255, 255, 255, 0.96);
  border-right-color: rgba(230, 230, 230, 0.9);
  border-bottom-color: rgba(210, 210, 210, 0.9);
  border-left-color: rgba(230, 230, 230, 0.9);
}

.btn-dark:hover {
  transform: translateY(-1px);
  box-shadow: -20px 28px 52px rgba(15, 23, 42, 0.22), var(--shadow-highlight), 0 0 0 1px rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.3);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.hero {
  padding-top: 120px;
  overflow: hidden;
  background: linear-gradient(140deg, #fdfefe, #f2f4f7);
}


.media-copy ul {
  padding-left: 18px;
  color: var(--muted);
}

.media-visuals {
  display: grid;
  gap: 12px;
}

.video-shell {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.image-slider {
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.slide-track {
  display: flex;
  gap: 10px;
  animation: marquee 18s linear infinite;
}

.slide-track img {
  width: 100%;
  max-width: 260px;
  border-radius: var(--radius-xs);
  object-fit: cover;
  filter: saturate(0.98);
}

.highlights {
  background: #f7f8fb;
}

.highlight-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(520px, calc((100% - 16px) / 2));
  gap: 16px;
  overflow-x: auto;
  padding: 8px 12px 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.highlight-track::-webkit-scrollbar {
  display: none;
}

.highlight-card {
  scroll-snap-align: start;
  padding: 20px;
  border-radius: var(--radius-md);
  min-height: 320px;
  display: grid;
  gap: 10px;
}

.highlight-card h3 {
  margin: 0;
}

.parallax-section {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -10%;
  background-image: url("media/air-photo.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(0.95);
  transform: translateY(0) scale(1.1);
  will-change: transform;
}

.parallax-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(2px);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(360px, 1.2fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.hero-image {
  min-height: 320px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-ambient), var(--shadow-highlight);
  border: 2px solid rgba(148, 163, 184, 0.3);
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-top-color: rgba(255, 255, 255, 0.96);
  border-right-color: rgba(230, 230, 230, 0.9);
  border-bottom-color: rgba(210, 210, 210, 0.9);
  border-left-color: rgba(230, 230, 230, 0.9);
  background: linear-gradient(140deg, #eef1f7, #e3e7ef);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-ambient), var(--shadow-highlight);
  border: 2px solid rgba(148, 163, 184, 0.3);
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-top-color: rgba(255, 255, 255, 0.96);
  border-right-color: rgba(230, 230, 230, 0.9);
  border-bottom-color: rgba(210, 210, 210, 0.9);
  border-left-color: rgba(230, 230, 230, 0.9);
}

.hero-copy.minimal {
  margin-bottom: 12px;
}

.background-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 0;
  animation: float 12s ease-in-out infinite alternate;
}

.blob-a {
  top: -40px;
  left: -60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.65), transparent 50%);
}

.blob-b {
  bottom: 40px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 55%);
  animation-duration: 14s;
}

.blob-c {
  top: 20%;
  right: 20%;
  background: radial-gradient(circle, rgba(226, 232, 240, 0.8), transparent 45%);
  animation-duration: 16s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(124, 58, 237, 0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.25;
  z-index: 0;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.hero-copy h1 {
  font-size: clamp(36px, 4vw, 52px);
}

.subheadline {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

.tagline {
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.core-positioning {
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 22px;
}

.eyebrow {
  color: #6b7280;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}

.cta-form {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0px;
}

.cta-form input[type="email"],
.cta-form input[type="text"],
.cta-form input[type="tel"],
.cta-form textarea {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  min-width: 240px;
  flex: 1;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  line-height: 1.5;
}

.cta-form input:focus,
.cta-form textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18);
}

.cta-form textarea {
  resize: vertical;
  min-height: 100px;
}

.cta-form button {
  padding: 14px 18px;
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  min-width: 220px;
  cursor: pointer;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.28);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 38px rgba(15, 23, 42, 0.38), 0 0 0 1px rgba(124, 58, 237, 0.24);
  background: linear-gradient(120deg, #0f172a, rgba(124, 58, 237, 0.08));
}

.nav .cta-form {
  flex-wrap: nowrap;
  margin-bottom: 0;
  justify-content: flex-end;
  justify-self: end;
  margin-left: 0;
}

.nav .cta-form input[type="email"] {
  min-width: 160px;
  flex: 0 1 200px;
  padding: 6px 10px;
  font-size: 13px;
  height: 34px;
  line-height: 1.1;
}

.nav .cta-form button {
  min-width: 0;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 13px;
  height: 34px;
  line-height: 1.1;
}

.nav .cta-form button .short-text {
  display: none;
}

@media (max-width: 900px) {
  .nav .cta-form input[type="email"] {
    display: none;
  }
  .brand-subtle {
    display: none;
  }
  .nav .cta-form button .long-text {
    display: none;
  }
  .nav .cta-form button .short-text {
    display: inline;
  }
}

.fine-print {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.highlight-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.highlight-card .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  margin-top: 6px;
}

.highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.highlight-card:hover .dot {
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.8), rgba(124, 58, 237, 0.3));
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.glass {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(243, 245, 250, 0.92));
  border: 2px solid rgba(148, 163, 184, 0.3);
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-top-color: rgba(255, 255, 255, 0.96);
  border-right-color: rgba(230, 230, 230, 0.9);
  border-bottom-color: rgba(210, 210, 210, 0.9);
  border-left-color: rgba(230, 230, 230, 0.9);
  box-shadow: var(--shadow-ambient), var(--shadow-highlight), var(--shadow-inset);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
}

.ai-panel,
.human-panel {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 600;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

.pill-primary {
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
}

.pill-secondary {
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
}

.status {
  font-size: 12px;
}

.chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.chat-bubble {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  max-width: 320px;
  border: 2px solid rgba(148, 163, 184, 0.35);
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-top-color: rgba(255, 255, 255, 0.96);
  border-right-color: rgba(230, 230, 230, 0.9);
  border-bottom-color: rgba(210, 210, 210, 0.9);
  border-left-color: rgba(230, 230, 230, 0.9);
  box-shadow: var(--shadow-inset);
}

.chat-bubble.reply {
  align-self: flex-end;
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(148, 163, 184, 0.5);
}

.calendar {
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-ambient), var(--shadow-highlight);
  border-width: 2px;
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-top-color: rgba(255, 255, 255, 0.96);
  border-right-color: rgba(230, 230, 230, 0.9);
  border-bottom-color: rgba(210, 210, 210, 0.9);
  border-left-color: rgba(230, 230, 230, 0.9);
}

.calendar-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar .label {
  font-weight: 700;
}

.calendar .meta {
  color: var(--muted);
  font-size: 14px;
}

.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.slots span {
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.04);
  font-weight: 600;
  font-size: 14px;
}

.slots .blocked {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

.ai-meter {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--muted);
}

.meter {
  height: 10px;
  width: 160px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
  overflow: hidden;
  position: relative;
}

.meter .fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.8), rgba(124, 58, 237, 0.35));
  width: 82%;
  border-radius: 999px;
  animation: pulse 2.8s ease-in-out infinite;
}

.blend-line {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: -14px;
  width: 4px;
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.5), rgba(226, 232, 240, 0.6));
  border-radius: 999px;
}

.human-panel {
  border: 1px solid rgba(14, 165, 233, 0.22);
  background: rgba(255, 255, 255, 0.75);
}

.photo-mock {
  height: 200px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(255, 255, 255, 0)),
    url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}

.photo-mock::before,
.photo-mock::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent 50%);
  filter: blur(40px);
  animation: float 10s ease-in-out infinite alternate;
}

.photo-mock::after {
  top: -60px;
  right: -80px;
  background: radial-gradient(circle, rgba(148, 163, 184, 0.25), transparent 55%);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #0f172a;
  font-weight: 700;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.12));
}

.photo-overlay span {
  font-weight: 500;
  color: #0f172a;
}

.story {
  color: var(--muted);
  font-style: italic;
}

.caption {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}

.section-header {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.opening {
  color: var(--muted);
  font-size: 16px;
}

.section {
  background: transparent;
}

.approach {
  background: linear-gradient(180deg, #ffffff, #f7f8fb);
}

.approach-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.approach-card {
  background: linear-gradient(145deg, #ffffff, #f5f6fb);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-width: 2px;
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-top-color: rgba(255, 255, 255, 0.96);
  border-right-color: rgba(230, 230, 230, 0.9);
  border-bottom-color: rgba(210, 210, 210, 0.9);
  border-left-color: rgba(230, 230, 230, 0.9);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-ambient), var(--shadow-highlight);
}

.approach-card h3 {
  font-size: 20px;
}

/* Icona uniforme AI / Team */
.approach-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(240,244,248,0.82));
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow:
    0 6px 16px rgba(15, 23, 42, 0.12),
    0 2px 4px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 2px rgba(148,163,184,0.15);
  color: #0f172a;
  background-clip: padding-box;
}

/* Connettore freccia doppia punta */
.approach-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 8px;
  padding: 0 24px;
  flex-shrink: 0;
}

.approach-arrow-svg {
  width: 120px;
  height: 64px;
  flex-shrink: 0;
  display: block;
}

.approach-connector-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(124, 58, 237, 0.5);
  text-align: center;
  white-space: nowrap;
  margin: 0;
}

/* Mobile: stack verticale con freccia ruotata 90° */
@media (max-width: 700px) {
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .approach-connector {
    padding: 12px 0;
    flex-direction: row;
    gap: 10px;
  }

  .approach-arrow-svg {
    width: 64px;
    height: 120px;
    transform: rotate(90deg);
  }

  .approach-connector-label {
    writing-mode: initial;
  }
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.03);
}

.feature .check {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  margin-top: 2px;
}

.feature .title {
  font-weight: 700;
  margin: 0 0 4px;
}

.feature .detail {
  margin: 0;
  color: var(--muted);
}

.transition {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.02));
  border: 1px dashed rgba(148, 163, 184, 0.5);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  font-weight: 700;
  color: var(--text);
}

.transition-text {
  grid-column: 1 / -1;
  text-align: center;
  font-weight: 700;
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.06), rgba(15, 23, 42, 0.04));
  border: 1px dashed rgba(148, 163, 184, 0.4);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-ambient), var(--shadow-highlight);
}

.icon-glow {
  position: relative;
}

.icon-glow::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 60%);
  animation: pulse-glow 2.2s ease-in-out infinite;
  z-index: -1;
}

.feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.feature-card {
  background: linear-gradient(145deg, #ffffff, #f4f5fa);
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-width: 2px;
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-top-color: rgba(255, 255, 255, 0.96);
  border-right-color: rgba(230, 230, 230, 0.9);
  border-bottom-color: rgba(210, 210, 210, 0.9);
  border-left-color: rgba(230, 230, 230, 0.9);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-ambient), var(--shadow-highlight);
  display: grid;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: -20px 28px 52px rgba(15, 23, 42, 0.16), var(--shadow-highlight);
}

.feature-card .icon {
  font-size: 24px;
}

.feature-card .description {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  font-weight: 700;
  font-size: 13px;
  justify-self: flex-start;
}

.timeline {
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 20px;
}

.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: start;
  position: relative;
  padding-left: 18px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: -10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.9), rgba(148, 163, 184, 0.08));
}

.timeline li:last-child::before {
  bottom: 24px;
}

.marker {
  font-weight: 700;
  color: #0f172a;
}

.timeline .content {
  background: linear-gradient(145deg, #ffffff, #f4f6fb);
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-width: 2px;
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-top-color: rgba(255, 255, 255, 0.96);
  border-right-color: rgba(230, 230, 230, 0.9);
  border-bottom-color: rgba(210, 210, 210, 0.9);
  border-left-color: rgba(230, 230, 230, 0.9);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-ambient), var(--shadow-highlight);
}

.timeline .icon {
  font-size: 18px;
}

.buyers {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.invert {
  filter: invert(1) hue-rotate(180deg);
  isolation: isolate;
}

.buyer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.buyer-card {
  background: linear-gradient(145deg, #ffffff, #f4f6fb);
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-width: 2px;
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-top-color: rgba(255, 255, 255, 0.96);
  border-right-color: rgba(230, 230, 230, 0.9);
  border-bottom-color: rgba(210, 210, 210, 0.9);
  border-left-color: rgba(230, 230, 230, 0.9);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: var(--shadow-ambient), var(--shadow-highlight);
}

.buyer-card .icon {
  font-size: 22px;
}

.why-us {
  background: linear-gradient(180deg, #ffffff, #f3f4f6);
}

.emphasis {
  max-width: 1100px;
  margin: 0 auto 28px;
  padding: 18px 20px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.emphasis .bold-line {
  font-weight: 800;
  color: #0f172a;
}

.comparison-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.compare-card {
  background: linear-gradient(145deg, #ffffff, #f4f6fb);
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-width: 2px;
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-top-color: rgba(255, 255, 255, 0.96);
  border-right-color: rgba(230, 230, 230, 0.9);
  border-bottom-color: rgba(210, 210, 210, 0.9);
  border-left-color: rgba(230, 230, 230, 0.9);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-ambient), var(--shadow-highlight);
}

.compare-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.compare-card.highlight {
  border: 1px solid rgba(124, 58, 237, 0.28);
  box-shadow: -20px 32px 56px rgba(15, 23, 42, 0.16), var(--shadow-highlight);
  background: linear-gradient(160deg, #ffffff, rgba(15, 23, 42, 0.04));
}

.emphasis.secondary {
  text-align: center;
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(148, 163, 184, 0.4);
}

.pillars {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.pillar-card {
  padding: 18px;
  background: linear-gradient(145deg, #ffffff, #f4f6fb);
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-width: 2px;
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-top-color: rgba(255, 255, 255, 0.96);
  border-right-color: rgba(230, 230, 230, 0.9);
  border-bottom-color: rgba(210, 210, 210, 0.9);
  border-left-color: rgba(230, 230, 230, 0.9);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-ambient), var(--shadow-highlight);
}

.pillar-card .icon {
  font-size: 22px;
}

.cta {
  padding-bottom: 120px;
}

.cta-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-width: 2px;
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-top-color: rgba(255, 255, 255, 0.96);
  border-right-color: rgba(230, 230, 230, 0.9);
  border-bottom-color: rgba(210, 210, 210, 0.9);
  border-left-color: rgba(230, 230, 230, 0.9);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  background: linear-gradient(145deg, #ffffff, #f3f6fb);
  box-shadow: var(--shadow-ambient), var(--shadow-highlight);
}

.cta-form.stacked {
  display: grid;
  gap: 12px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.checkboxes {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.checkboxes label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.early-bird {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  margin: 8px 0 16px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: var(--radius-sm);
  border: 1px solid #f59e0b;
}

.early-bird-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  white-space: nowrap;
}

.early-bird-offer {
  margin: 0;
  color: #92400e;
  font-size: 0.95rem;
}

.early-bird-offer strong {
  color: #78350f;
}

.investors-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  margin: 8px 0 16px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: var(--radius-sm);
  border: 1px solid #3b82f6;
}

.investors-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  white-space: nowrap;
}

.investors-offer {
  margin: 0;
  color: #1e40af;
  font-size: 0.95rem;
}

.investors-offer strong {
  color: #1e3a8a;
}

.checkbox-label {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.fine-print-discount {
  display: none;
}

.footer {
  padding: 36px 24px 48px;
  background: #0f172a;
  color: #e5e7eb;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact .social {
  display: flex;
  gap: 12px;
}

.footer-support {
  max-width: 1200px;
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-support p {
  margin: 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-support a {
  color: #a78bfa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-support a:hover {
  color: #c4b5fd;
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: #0f172a;
  color: #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 20;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-20px) scale(1.04);
  }
}

@keyframes pulse {
  0% { width: 78%; }
  50% { width: 88%; }
  100% { width: 80%; }
}

@keyframes drift {
  0% { transform: translateY(0) translateX(0); opacity: 0.7; }
  50% { transform: translateY(-20px) translateX(10px); opacity: 1; }
  100% { transform: translateY(-40px) translateX(-10px); opacity: 0.4; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulse-glow {
  0% { transform: scale(0.96); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(0.96); opacity: 0.6; }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-prime {
    padding: 100px 18px 60px;
    min-height: 70vh;
  }

  .hero-prime-card {
    padding: 32px 28px;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 100px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    padding-left: 12px;
  }

  .timeline li::before {
    left: 0;
  }

  .blend-line {
    display: none;
  }

}

@media (max-width: 640px) {
  section {
    padding: 72px 18px;
  }

  .cta-form button {
    width: 100%;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-prime h1 {
    font-size: clamp(32px, 7vw, 48px);
  }
}

/* ========================================
   FEATURES SHOWCASE SECTION
   ======================================== */

.features-showcase {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.feature-block {
  max-width: 1100px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 36px 40px;
  position: relative;
  /* Liquid Glass Effect */
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 252, 0.85)
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  /* Deep Skeuomorphic Shadows */
  box-shadow:
    /* Outer shadow - depth */ 0 25px 50px -12px rgba(15, 23, 42, 0.15),
    0 12px 24px -8px rgba(15, 23, 42, 0.1),
    /* Inner highlight - top left */ inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 1px 0 0 rgba(255, 255, 255, 0.6),
    /* Inner shadow - bottom right */ inset 0 -1px 0 rgba(148, 163, 184, 0.15),
    inset -1px 0 0 rgba(148, 163, 184, 0.1),
    /* Ambient glow */ 0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.feature-block:hover {
  transform: translateY(-4px);
  box-shadow:
    0 35px 60px -15px rgba(15, 23, 42, 0.2),
    0 20px 40px -10px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 1px 0 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(148, 163, 184, 0.1),
    inset -1px 0 0 rgba(148, 163, 184, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.6),
    0 0 60px rgba(124, 58, 237, 0.08);
}

.feature-block--media-right {
  grid-template-columns: 1fr 1fr;
}

.feature-block--media-right .feature-media {
  order: 2;
}

.feature-block--centered {
  grid-template-columns: 1fr;
  text-align: center;
}

.feature-block--vertical {
  grid-template-columns: 1fr;
  gap: 32px;
}

.feature-block--vertical-centered {
  text-align: center;
}

.feature-block--vertical-centered .feature-content--title-only h3 {
  background: linear-gradient(135deg, #0f172a 0%, #334155 50%, #0f172a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-block--vertical-centered .feature-description {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.feature-block--vertical .feature-media {
  order: 2;
  width: 100%;
}

.feature-block--vertical .feature-video-raw {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 16px;
}

.feature-content--title-only h3 {
  margin-bottom: 0;
}

.feature-content--title-only {
  order: 1;
}

.feature-content--description-only {
  order: 3;
}

.feature-content--wide {
  max-width: 800px;
  margin: 0 auto;
}

.feature-block h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
  background: linear-gradient(135deg, #0f172a 0%, #334155 50%, #0f172a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-description {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-list--spaced {
  margin-top: 18px;
}

.benefit-list--horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.benefit-list--horizontal li {
  flex: 0 1 calc(33.333% - 16px);
  text-align: center;
  align-items: center;
  flex-direction: column;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  color: var(--text);
}

.espositori-link {
  color: var(--violet);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.espositori-link:hover {
  color: var(--violet-strong);
}

.beta-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-strong) 100%);
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.check-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  position: relative;
  margin-top: 2px;
  /* Skeuomorphic raised button */
  background: linear-gradient(
    145deg,
    #1e293b 0%,
    #0f172a 100%
  );
  box-shadow:
    0 4px 8px rgba(15, 23, 42, 0.3),
    0 1px 2px rgba(15, 23, 42, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.check-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.check-icon-special {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  position: relative;
  margin-top: 2px;
  /* Skeuomorphic raised button */
  background: linear-gradient(
    145deg,
    #904097 0%,
    #9555b5 100%
  );
  box-shadow:
    0 4px 8px rgba(58, 22, 61, 0.3),
    0 1px 2px rgba(58, 22, 61, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.check-icon-special::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

/* ========================================
   iPhone Video Wrapper with Frame Mask
   ======================================== */

.iphone-video-wrapper {
  --iphone-width: 320px;
  position: relative;
  width: var(--iphone-width);
  margin: 0 auto;
}

/* The video displays naturally */
.feature-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--iphone-width) * 0.21875); /* 70px on 320px width */
  z-index: 1;
  border: none;
  background: #0a0a0c;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
  filter: brightness(0.85) contrast(1.1) saturate(1.05);
  box-shadow:
    0 30px 50px rgba(70, 55, 45, 0.32),
    0 14px 28px rgba(35, 30, 25, 0.28);
}

/* Raw video without phone frame - displays at native resolution */
.feature-video-raw {
  display: block;
  width: 1000px;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xs);
  box-shadow:
    0 30px 60px -15px rgba(0, 0, 0, 0.5),
    0 15px 30px rgba(0, 0, 0, 0.25);
}

/* iPhone frame overlay - extends OUTSIDE the video to mask corners */
.iphone-frame {
  --bezel-width: calc(var(--iphone-width) * 0.03125); /* 10px on 320px width */
  position: absolute;
  /* Extend beyond the video bounds - frame goes outside */
  top: calc(-1 * var(--bezel-width));
  left: calc(-1 * var(--bezel-width));
  right: calc(-1 * var(--bezel-width));
  bottom: calc(-1 * var(--bezel-width));
  z-index: 2;
  pointer-events: none;
  border-radius: calc(var(--iphone-width) * 0.25); /* 80px on 320px width */
  /* Border acts as the phone bezel */
  border: var(--bezel-width) solid #1a1a24;
  /* Multiple shadows for realistic depth */
  box-shadow:
    /* Outer drop shadow */
    0 40px 80px -20px rgba(0, 0, 0, 0.45),
    0 25px 50px -15px rgba(0, 0, 0, 0.35),
    /* Inner edge highlight */
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 1px 0 0 rgba(255, 255, 255, 0.05),
    /* Outer frame highlight */
    0 1px 0 rgba(255, 255, 255, 0.1);
  /* Gradient on the bezel */
  background: linear-gradient(
    145deg,
    #2d2d3a 0%,
    #1a1a24 30%,
    #0f0f16 70%,
    #1a1a24 100%
  );
  /* Clip the gradient to only show on border area */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* SPID Badge - Liquid Dark Glass */
.spid-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.95),
    rgba(30, 41, 59, 0.9)
  );
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.4),
    0 12px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.spid-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.spid-logo {
  height: 32px;
  width: auto;
}

.spid-verified {
  color: #4ade80;
  font-weight: 700;
  font-size: 16px;
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.benefit-item {
  padding: 24px 20px;
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.8),
    rgba(248, 250, 252, 0.6)
  );
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 10px 30px -10px rgba(15, 23, 42, 0.12),
    0 4px 12px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(148, 163, 184, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow:
    0 15px 40px -10px rgba(15, 23, 42, 0.16),
    0 8px 20px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(148, 163, 184, 0.08);
}

.benefit-stat {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #0f172a, #334155);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-label {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

/* Filter tags */
.filter-icon-wrap {
  margin-bottom: 20px;
}

.filter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 68px;
  height: 68px;
  /* Liquid Glass raised */
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 252, 0.85)
  );
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 10px 25px -8px rgba(15, 23, 42, 0.15),
    0 4px 10px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(148, 163, 184, 0.15);
}

.filter-icon::before,
.filter-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  background: linear-gradient(90deg, #0f172a, #334155);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.2);
}

.filter-icon::before {
  top: 18px;
  width: 34px;
}

.filter-icon::after {
  top: 30px;
  width: 24px;
}

/* Third line via box-shadow */
.filter-icon span {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 4px;
  background: linear-gradient(90deg, #0f172a, #334155);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.2);
}

/* ========================================
   SPID FILTERS ARTICLE — REDESIGN
   ======================================== */

.feature-block--spid {
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  /* override centered */
  text-align: left;
}

/* ---- LEFT COLUMN ---- */
.spid-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spid-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.spid-eyebrow-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.spid-headline {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #0f172a 0%, #334155 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.spid-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Hard / Soft legend */
.spid-filter-modes {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.spid-filter-mode {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(248,250,252,0.7));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow:
    0 6px 16px rgba(15,23,42,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(148,163,184,0.1);
}

.spid-mode-dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 50%;
  margin-top: 3px;
}

.spid-mode-dot--hard {
  background: #dc2626;
  box-shadow: 0 0 8px rgba(220,38,38,0.4);
}

.spid-mode-dot--soft {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245,158,11,0.4);
}

.spid-mode-label {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 3px;
}

.spid-mode-desc {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* Filter list mockup */
.spid-filter-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(248,250,252,0.88));
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow:
    0 12px 30px rgba(15,23,42,0.1),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(148,163,184,0.1);
}

.spid-filter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-xs);
  transition: background 0.2s ease;
}

.spid-filter-row:hover {
  background: rgba(15,23,42,0.03);
}

.spid-filter-pill {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 6px;
}

.spid-filter-pill--hard {
  background: rgba(220,38,38,0.1);
  color: #dc2626;
  border: 1px solid rgba(220,38,38,0.2);
}

.spid-filter-pill--soft {
  background: rgba(245,158,11,0.1);
  color: #b45309;
  border: 1px solid rgba(245,158,11,0.25);
}

.spid-filter-name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.spid-filter-status {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.spid-filter-status--active {
  color: #059669;
  background: rgba(5,150,105,0.1);
}

.spid-filter-status--pref {
  color: #7c3aed;
  background: rgba(124,58,237,0.1);
}

/* ---- RIGHT COLUMN ---- */
.spid-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* SPID Badge Hero area */
.spid-badge-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(145deg, rgba(15,23,42,0.95), rgba(30,41,59,0.9));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.spid-badge-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4ade80, #22d3ee, #818cf8);
  opacity: 0.9;
}

/* Override the existing .spid-badge inside hero */
.spid-badge-hero .spid-badge {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}

.spid-badge-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.spid-badge-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* Override .spid-verified inside hero */
.spid-badge-hero .spid-verified {
  font-size: 15px;
}

/* Stat bubble */
.spid-stat-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  text-align: center;
  flex-shrink: 0;
}

.spid-stat-number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #4ade80;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 0 20px rgba(74,222,128,0.4);
}

.spid-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 5px;
  line-height: 1.3;
  max-width: 80px;
}

/* Mini card grid 2x3 */
.spid-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.spid-mini-card {
  padding: 16px 14px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(248,250,252,0.82));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow:
    0 8px 20px rgba(15,23,42,0.08),
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(148,163,184,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.spid-mini-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 30px rgba(15,23,42,0.12),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(148,163,184,0.08);
}

.spid-mini-card--accent {
  background: linear-gradient(145deg, rgba(245,243,255,0.95), rgba(237,233,254,0.85));
  border-color: rgba(124,58,237,0.2);
  box-shadow:
    0 8px 20px rgba(124,58,237,0.1),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.spid-mini-icon {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 2px;
}

.spid-mini-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

.spid-mini-desc {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .feature-block--spid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .spid-mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .spid-stat-bubble {
    display: none;
  }
}

@media (max-width: 580px) {
  .spid-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spid-filter-modes {
    flex-direction: column;
  }
}

/* ---- legacy filter-icon still used in eyebrow ---- */
.spid-eyebrow .filter-icon-wrap {
  margin-bottom: 0;
}

.filter-examples {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.filter-tag {
  padding: 14px 22px;
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.9),
    rgba(248, 250, 252, 0.7)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  box-shadow:
    0 8px 20px -8px rgba(15, 23, 42, 0.15),
    0 4px 8px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(148, 163, 184, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.filter-tag:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px -8px rgba(15, 23, 42, 0.2),
    0 6px 12px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(148, 163, 184, 0.1);
}

/* ========================================
   EXPERTS SECTION
   ======================================== */

.experts-section {
  background: linear-gradient(180deg, #ffffff, #f6f7fb);
}

.expert-featured {
  max-width: 1000px;
  margin: 0 auto 56px;
  padding: 40px 44px;
  position: relative;
  /* Liquid Glass with violet tint */
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 245, 255, 0.9)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 30px 60px -15px rgba(124, 58, 237, 0.15),
    0 15px 30px -10px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(124, 58, 237, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.5);
}

.expert-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--violet), var(--violet-soft), var(--violet));
  background-size: 200% 100%;
}

.expert-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    transparent 60%
  );
  pointer-events: none;
}

.expert-featured-badge {
  display: inline-block;
  padding: 8px 18px;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--violet) 0%,
    var(--violet-soft) 50%,
    var(--violet) 100%
  );
  background-size: 200% 100%;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  border-radius: 999px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow:
    0 6px 20px rgba(124, 58, 237, 0.35),
    0 2px 6px rgba(124, 58, 237, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.expert-featured h3 {
  font-size: 28px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #0f172a 0%, #334155 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.expert-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}

.expert-description {
  color: var(--muted);
  max-width: 800px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.expert-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.expert-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  /* Subtle liquid glass */
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.7),
    rgba(248, 250, 252, 0.5)
  );
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(148, 163, 184, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.expert-benefit:hover {
  transform: translateY(-1px);
  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(148, 163, 184, 0.06);
}

.expert-benefit span:last-child {
  font-weight: 500;
  color: var(--text);
}

.experts-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.expert-card {
  padding: 28px;
  position: relative;
  /* Liquid Glass */
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.92),
    rgba(248, 250, 252, 0.85)
  );
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 40px -15px rgba(15, 23, 42, 0.12),
    0 8px 20px -8px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(148, 163, 184, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.expert-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 60px -15px rgba(15, 23, 42, 0.18),
    0 15px 30px -10px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(148, 163, 184, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.6),
    0 0 40px rgba(124, 58, 237, 0.06);
}

.expert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.9),
    rgba(240, 244, 248, 0.8)
  );
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 11px;
  color: var(--text);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 6px 16px rgba(15, 23, 42, 0.1),
    0 2px 4px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 2px rgba(148, 163, 184, 0.15);
}

.expert-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #0f172a, #334155);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.expert-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expert-services li {
  padding: 10px 0;
  color: var(--muted);
  font-size: 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  transition: color 0.2s ease;
}

.expert-services li:hover {
  color: var(--text);
}

.expert-services li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.experts-section-standalone {
  max-width: 1300px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.experts-grid--standalone {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 0;
  padding: 0;
}

/* ========================================
   EXPERTS GRID COMPACT (inside feature-content)
   ======================================== */

.experts-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
  align-items: stretch;
}

.experts-grid-compact .expert-card {
  padding: 14px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  min-height: 160px;
}

.experts-grid-compact .expert-card .expert-services {
  flex: 1;
}

.experts-grid-compact .expert-icon {
  width: 36px;
  height: 36px;
  font-size: 9px;
  border-radius: var(--radius-xs);
  margin-bottom: 10px;
}

.experts-grid-compact .expert-card h4 {
  font-size: 14px;
  margin-bottom: 8px;
}

.experts-grid-compact .expert-services li {
  font-size: 12px;
  padding: 5px 0;
}

/* Sentinel - hidden from grid layout, stays observable */
.espositori-trigger-sentinel {
  display: none;
}

/* Espositori expandable wrapper - always last, full row */
.espositori-wrapper {
  grid-column: 1 / -1;
  cursor: pointer;
}

/* Small card - visible by default, constrained width */
.espositori-card-small {
  overflow: hidden;
  max-height: 600px;
  opacity: 1;
  /* Constrain to ~1/3 width to look like a peer card */
  max-width: calc(33.33% - 7px);
  display: flex;
  flex-direction: column;
  min-height: 160px;
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    max-width 0.4s ease;
}

.espositori-wrapper.is-expanded .espositori-card-small {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  max-width: 100%;
}

/* Hint text inside small card */
.espositori-hint {
  margin-top: auto;
  padding-top: 8px;
  font-size: 11px;
  color: var(--violet);
  font-weight: 600;
  opacity: 0.7;
}

/* Large card - hidden by default */
.espositori-card-large {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease 0.2s;
}

.espositori-wrapper.is-expanded .espositori-card-large {
  max-height: 1200px;
  opacity: 1;
}

.espositori-card-large .expert-featured {
  margin-bottom: 0;
  max-width: 100%;
}

@media (max-width: 900px) {
  .experts-grid-compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .espositori-card-small {
    max-width: calc(50% - 5px);
  }
}

@media (max-width: 640px) {
  .experts-grid-compact {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .experts-grid-compact .expert-card {
    padding: 12px;
  }

  .espositori-card-small {
    max-width: 100%;
  }
}

.expert-card--espositori {
  background: linear-gradient(145deg, rgba(245, 243, 255, 0.95), rgba(237, 233, 254, 0.85));
  border: 1px solid rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 40px -15px rgba(124, 58, 237, 0.15), 0 8px 20px -8px rgba(124, 58, 237, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(124, 58, 237, 0.1), 0 0 0 1px rgba(124, 58, 237, 0.1);
}

.expert-card--espositori:hover {
  box-shadow: 0 30px 60px -15px rgba(124, 58, 237, 0.2), 0 15px 30px -10px rgba(124, 58, 237, 0.15), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -1px 0 rgba(124, 58, 237, 0.1), 0 0 0 1px rgba(124, 58, 237, 0.2), 0 0 40px rgba(124, 58, 237, 0.1);
}

.expert-card--espositori .expert-icon {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-strong) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3), 0 2px 4px rgba(124, 58, 237, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.expert-card--espositori h4 {
  background: linear-gradient(135deg, var(--violet-strong), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 8px;
}

.expert-featured-wrapper {
  grid-column: 1 / -1;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease, margin 0.8s ease;
}

.expert-featured-wrapper.is-open {
  max-height: 1200px;
  opacity: 1;
  margin-top: 16px;
  margin-bottom: 24px;
}

.expert-featured-wrapper .expert-featured {
  margin-bottom: 0;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing-section {
  background: linear-gradient(180deg, #f6f7fb, #ffffff);
}

.pricing-toggles {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  position: relative;
  /* Liquid Glass */
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 252, 0.88)
  );
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  box-shadow:
    0 15px 35px -10px rgba(15, 23, 42, 0.12),
    0 6px 15px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(148, 163, 184, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease, background 0.3s ease;
}

.pricing-toggle-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.pricing-toggle-item:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 45px -12px rgba(15, 23, 42, 0.15),
    0 10px 20px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(148, 163, 184, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.6);
}

.toggle-info h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #0f172a, #334155);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.toggle-info p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

/* Toggle Switch - Skeuomorphic Apple Style */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 32px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: linear-gradient(
    180deg,
    #d8d8dc 0%,
    #e9e9eb 100%
  );
  border-radius: 32px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.8);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 28px;
  width: 28px;
  left: 2px;
  bottom: 2px;
  background: linear-gradient(
    145deg,
    #ffffff 0%,
    #f8f8f8 100%
  );
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(
    180deg,
    #2ecc71 0%,
    #27ae60 100%
  );
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.5),
    0 0 12px rgba(46, 204, 113, 0.3);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(24px);
}

/* ========================================
   COMPARISON SECTION
   ======================================== */

.comparison-section {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.comparison-table-wrap {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  position: relative;
  border-radius: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 252, 0.9)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 25px 50px -15px rgba(15, 23, 42, 0.15),
    0 12px 24px -8px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(148, 163, 184, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.5);
}

.comparison-table-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 40%
  );
  pointer-events: none;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  position: relative;
  z-index: 1;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 28px;
  text-align: left;
}

.comparison-table thead th {
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0.8),
    rgba(241, 245, 249, 0.6)
  );
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.comparison-table thead th:first-child {
  border-radius: var(--radius-lg) 0 0 0;
}

.comparison-table thead th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
  background: rgba(248, 250, 252, 0.5);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.row-label {
  font-weight: 700;
  color: var(--text);
}

.negative {
  color: #dc2626;
  font-weight: 600;
}

.neutral {
  color: #92400e;
  font-weight: 600;
}

.positive {
  color: #059669;
  font-weight: 700;
}

.highlight-col {
  background: linear-gradient(
    180deg,
    rgba(124, 58, 237, 0.06),
    rgba(124, 58, 237, 0.03)
  );
  position: relative;
}

.highlight-col::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--violet), var(--violet-soft));
}

.comparison-table thead th.highlight-col {
  background: linear-gradient(
    180deg,
    rgba(124, 58, 237, 0.12),
    rgba(124, 58, 237, 0.08)
  );
  color: var(--violet-strong);
}

/* ========================================
   RESPONSIVE - Features, Experts, Pricing
   ======================================== */

@media (max-width: 900px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-block--media-right .feature-media {
    order: 0;
  }

  .feature-media {
    display: flex;
    justify-content: center;
  }

  .iphone-video-wrapper {
    --iphone-width: 200px;
  }

  .expert-featured {
    padding: 28px 24px;
  }

  .experts-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .comparison-table-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to left, rgba(248, 250, 252, 0.95), transparent);
    pointer-events: none;
  }
}

@media (max-width: 640px) {
  .feature-block {
    padding: 24px 20px;
    margin-bottom: 40px;
  }

  .benefit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .benefit-item {
    padding: 16px 12px;
  }

  .benefit-stat {
    font-size: 22px;
  }

  .iphone-video-wrapper {
    --iphone-width: 220px;
  }

  .expert-benefits-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 16px;
    font-size: 14px;
  }

  .pricing-toggle-item {
    padding: 16px 18px;
  }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for grid items */
.experts-grid .scroll-animate:nth-child(1) { transition-delay: 0.05s; }
.experts-grid .scroll-animate:nth-child(2) { transition-delay: 0.12s; }
.experts-grid .scroll-animate:nth-child(3) { transition-delay: 0.19s; }
.experts-grid .scroll-animate:nth-child(4) { transition-delay: 0.26s; }
.experts-grid .scroll-animate:nth-child(5) { transition-delay: 0.33s; }

.pricing-toggles .scroll-animate:nth-child(1) { transition-delay: 0.05s; }
.pricing-toggles .scroll-animate:nth-child(2) { transition-delay: 0.12s; }
.pricing-toggles .scroll-animate:nth-child(3) { transition-delay: 0.19s; }
.pricing-toggles .scroll-animate:nth-child(4) { transition-delay: 0.26s; }
.pricing-toggles .scroll-animate:nth-child(5) { transition-delay: 0.33s; }

/* Video placeholder animation */
/* ========================================
   LARGE DESKTOP SCREENS
   ======================================== */

@media (min-width: 1200px) {
  .feature-block {
    max-width: 1300px;
    padding: 48px 56px;
    gap: 64px;
    margin-bottom: 80px;
  }

  .feature-content h3 {
    font-size: 2rem;
  }

  .feature-description {
    font-size: 1.15rem;
  }

  .benefit-list li {
    font-size: 1.05rem;
  }

  .iphone-video-wrapper {
    --iphone-width: 380px;
  }

  .feature-video-raw {
    width: 800px;
  }

  .benefit-grid {
    gap: 20px;
  }

  .benefit-item {
    padding: 28px 24px;
  }

  .benefit-stat {
    font-size: 32px;
  }

  .benefit-label {
    font-size: 15px;
  }

  .section-header h2 {
    font-size: 2.8rem;
  }

  .section-header .subheadline {
    font-size: 1.25rem;
  }

  .experts-grid {
    gap: 28px;
  }

  .expert-card {
    padding: 36px 32px;
  }

  .expert-featured {
    padding: 48px 56px;
  }
}

@media (min-width: 1600px) {
  .feature-block {
    max-width: 1500px;
    padding: 56px 72px;
    gap: 80px;
  }

  .feature-content h3 {
    font-size: 2.25rem;
  }

  .iphone-video-wrapper {
    --iphone-width: 440px;
  }

  .feature-video-raw {
    width: 1000px;
  }

  .section-header h2 {
    font-size: 3.2rem;
  }
}

/* ========================================
   TRUST SECTION — SPID + Filtri + Pilastri
   ======================================== */

.trust {
  background: linear-gradient(180deg, #f0f2f8, #ffffff);
}

/* ---- SPID Bar (full width, dark) ---- */
.trust-spid-bar {
  max-width: 1100px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 32px;
  background: linear-gradient(145deg, rgba(15,23,42,0.97), rgba(26,37,60,0.95));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}

.trust-spid-bar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4ade80, #22d3ee, #818cf8, #4ade80);
  background-size: 200% 100%;
  animation: shimmer 4s ease infinite;
}

/* Override .spid-badge inside the bar */
.trust-spid-bar .spid-badge {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 0;
  backdrop-filter: none;
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-spid-bar .spid-badge-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-spid-bar .spid-verified {
  font-size: 16px;
}

.trust-spid-bar .spid-badge-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* Stats group */
.trust-stat-group {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  text-align: center;
}

.trust-stat-number {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #4ade80;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 0 20px rgba(74,222,128,0.35);
}

.trust-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
  max-width: 100px;
}

/* ---- Main 2-col grid ---- */
.trust-main-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT column */
.trust-filters-col {
  display: flex;
  flex-direction: column;
}

/* Filter list expands to fill remaining height */
.trust-filters-col .spid-filter-list {
  flex: 1;
}

/* RIGHT column */
.trust-pillars-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

/* Pillar cards inside trust */
.trust-pillars-col .pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 100%;
}

.trust-pillars-col .pillar-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
}

.trust-pillars-col .pillar-card .icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(240,244,248,0.7));
  box-shadow:
    0 4px 10px rgba(15,23,42,0.1),
    inset 0 1px 0 rgba(255,255,255,1);
}

.trust-pillars-col .pillar-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.trust-pillars-col .pillar-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* SPID pillar accent */
.pillar-card--spid {
  border-color: rgba(74,222,128,0.25) !important;
  background: linear-gradient(145deg, rgba(240,253,244,0.95), rgba(220,252,231,0.7)) !important;
}

.pillar-card--spid .icon {
  background: linear-gradient(145deg, rgba(74,222,128,0.15), rgba(34,197,94,0.1)) !important;
}

/* Security mini row */
.trust-security-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.trust-sec-card {
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(248,250,252,0.82));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow:
    0 6px 16px rgba(15,23,42,0.08),
    inset 0 1px 0 rgba(255,255,255,0.95);
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-sec-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(15,23,42,0.12),
    inset 0 1px 0 rgba(255,255,255,1);
}

.trust-sec-icon {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 2px;
}

.trust-sec-title {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

.trust-sec-desc {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .trust-main-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-spid-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .trust-stat-group {
    width: 100%;
    justify-content: flex-start;
  }

  .trust-security-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .trust-security-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-pillars-col .pillar-card {
    flex-direction: column;
    gap: 12px;
  }

  .trust-stat-group {
    flex-direction: column;
    gap: 10px;
  }
}

/* ========================================
   APPROACH UNIFIED SECTION
   Approach + Comparison Table + Why Us
   ======================================== */

.approach-unified {
  background: linear-gradient(180deg, #ffffff, #f4f5fa, #ffffff);
}

/* Horizontal divider with centered label */
.approach-divider {
  max-width: 900px;
  margin: 56px auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.approach-divider::before,
.approach-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.4), transparent);
}

.approach-divider span {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

/* Comparison sub-section header */
.approach-comparison-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.approach-comparison-header {
  text-align: center;
  margin-bottom: 28px;
}

.approach-comparison-header h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 10px;
}

/* Closing line under comparison table */
.approach-closing {
  max-width: 820px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(255,255,255,0.6), rgba(248,250,252,0.5));
  border: 1px solid rgba(148,163,184,0.2);
}

.approach-closing strong {
  color: #0f172a;
}

/* ========================================
   STRIPE TIP WIDGET
   ======================================== */

.stripe-tip-section {
  /* Full-width band — not a card */
  padding: 0;
  background: rgba(248, 250, 252, 0.92);
  border-top: 1px solid rgba(148,163,184,0.14);
  border-bottom: 1px solid rgba(148,163,184,0.14);
  position: relative;
  z-index: 2;
  /* Subtle top accent line spans full width */
  overflow: hidden;
}

.stripe-tip-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(99,91,255,0.25) 15%,
    rgba(99,91,255,0.5) 50%,
    rgba(99,91,255,0.25) 85%,
    transparent 100%
  );
  pointer-events: none;
}

/* ---- Main bar — full width, no card ---- */
.stripe-tip-bar {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 32px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

/* ---- Coffee emoji button ---- */
.stripe-tip-logo-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.18s ease, transform 0.15s ease;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  max-width: 440px;
}

.stripe-tip-logo-btn:hover {
  background: rgba(99,91,255,0.07);
  transform: translateY(-1px);
}

.stripe-tip-logo-emoji {
  font-size: 22px;
  line-height: 1;
  display: block;
  flex-shrink: 0;
}

.stripe-tip-logo-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: -0.01em;
  line-height: 1.35;
  /* visible on desktop, hidden on small screens */
}

/* ---- Vertical divider ---- */
.stripe-tip-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(148,163,184,0.4), transparent);
  margin: 0 14px;
  flex-shrink: 0;
}

/* ---- Scroll wrapper ---- */
.stripe-tip-scroll-wrap {
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* Fade edges to hint scrollability */
  -webkit-mask-image: linear-gradient(90deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 3%,
    rgba(0,0,0,1) 95%,
    rgba(0,0,0,0) 100%
  );
  mask-image: linear-gradient(90deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 3%,
    rgba(0,0,0,1) 95%,
    rgba(0,0,0,0) 100%
  );
}

.stripe-tip-scroll-wrap::-webkit-scrollbar {
  display: none;
}

/* ---- Pills container ---- */
.stripe-tip-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 2px;
  /* don't wrap — horizontal scroll */
  flex-wrap: nowrap;
  width: max-content;
}

/* ---- Individual pill — fixed equal size ---- */
.stripe-tip-pill {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* Fixed equal size for all pills */
  width: 226px;
  min-width: 96px;
  height: 54px;
  padding: 0;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.18s ease, background 0.18s ease;
  /* Skeuomorphic raised pill */
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(243,245,252,0.8));
  border: 1px solid rgba(255,255,255,0.85);
  border-bottom-color: rgba(210,215,230,0.9);
  border-right-color: rgba(220,226,236,0.8);
  box-shadow:
    0 3px 10px rgba(15,23,42,0.07),
    0 1px 3px rgba(15,23,42,0.04),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(148,163,184,0.1);
}

.stripe-tip-pill:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(15,23,42,0.12),
    0 3px 8px rgba(15,23,42,0.07),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(148,163,184,0.08),
    0 0 0 1px rgba(99,91,255,0.18);
  background: linear-gradient(145deg, #ffffff, #f0f1f9);
}

.stripe-tip-pill:active {
  transform: translateY(0);
  box-shadow:
    0 2px 6px rgba(15,23,42,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 2px 4px rgba(15,23,42,0.05);
}

/* Featured pill (€10) */
.stripe-tip-pill--featured {
  background: linear-gradient(145deg, rgba(99,91,255,0.08), rgba(99,91,255,0.04));
  border-color: rgba(99,91,255,0.3);
  border-bottom-color: rgba(99,91,255,0.4);
  box-shadow:
    0 4px 12px rgba(99,91,255,0.12),
    0 1px 4px rgba(99,91,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(99,91,255,0.1);
}

.stripe-tip-pill--featured:hover {
  background: linear-gradient(145deg, rgba(99,91,255,0.12), rgba(99,91,255,0.06));
  box-shadow:
    0 10px 24px rgba(99,91,255,0.2),
    0 3px 8px rgba(99,91,255,0.12),
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 0 0 1px rgba(99,91,255,0.3);
}

.stripe-tip-pill--featured .stripe-tip-pill-amount {
  color: #5550d9;
}

/* Hidden extras — shown after arrow click */
.stripe-tip-pill--extra {
  opacity: 0;
  pointer-events: none;
  /* visually collapsed width */
  width: 0;
  min-width: 0;
  overflow: hidden;
  transition:
    opacity 0.3s ease,
    width 0.4s cubic-bezier(0.4,0,0.2,1),
    min-width 0.4s cubic-bezier(0.4,0,0.2,1),
    transform 0.15s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

/* When expanded, restore pill to same fixed size */
.stripe-tip-pills.is-expanded .stripe-tip-pill--extra {
  opacity: 1;
  pointer-events: auto;
  width: 226px;
  min-width: 96px;  
}

/* Pill text */
.stripe-tip-pill-amount {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1;
}

.stripe-tip-pill-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  line-height: 1;
}

/* ---- Arrow button — inline with pills ---- */
.stripe-tip-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 54px; /* same height as pills */
  min-width: 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 4px;
  background: linear-gradient(145deg, rgba(255,255,255,0.85), rgba(243,245,252,0.75));
  border: 1px solid rgba(255,255,255,0.8);
  border-bottom-color: rgba(210,215,230,0.85);
  box-shadow:
    0 2px 8px rgba(15,23,42,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(148,163,184,0.1);
  color: var(--muted);
  transition: background 0.18s ease, transform 0.2s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.stripe-tip-arrow:hover {
  background: linear-gradient(145deg, rgba(99,91,255,0.08), rgba(99,91,255,0.04));
  color: #5550d9;
  box-shadow:
    0 6px 16px rgba(99,91,255,0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transform: translateX(2px);
}

.stripe-tip-arrow-svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* Rotated state when expanded */
.stripe-tip-arrow.is-expanded .stripe-tip-arrow-svg {
  transform: rotate(180deg);
}

/* ---- Custom amount panel ---- */
.stripe-tip-custom {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.45s cubic-bezier(0.4,0,0.2,1),
    opacity 0.3s ease;
}

.stripe-tip-custom.is-open {
  max-height: 300px;
  opacity: 1;
}

.stripe-tip-custom-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 32px 24px;
  background: transparent;
  border-top: 1px solid rgba(148,163,184,0.1);
}

.stripe-tip-custom-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  opacity: 0.8;
}

.stripe-tip-custom-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.stripe-tip-custom-currency {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  flex-shrink: 0;
}

.stripe-tip-custom-input {
  flex: 1;
  min-width: 100px;
  max-width: 180px;
  padding: 10px 14px;
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(148,163,184,0.35);
  background: rgba(255,255,255,0.9);
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  /* Remove number spinners */
  -moz-appearance: textfield;
}

.stripe-tip-custom-input::-webkit-outer-spin-button,
.stripe-tip-custom-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.stripe-tip-custom-input:focus {
  border-color: #6358ff;
  box-shadow: 0 0 0 3px rgba(99,91,255,0.15);
}

.stripe-tip-custom-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #635bff 0%, #4b44d8 100%);
  box-shadow:
    0 4px 14px rgba(99,91,255,0.35),
    0 1px 4px rgba(99,91,255,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.15s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.stripe-tip-custom-submit:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #6f67ff 0%, #5649e0 100%);
  box-shadow:
    0 8px 22px rgba(99,91,255,0.4),
    0 2px 6px rgba(99,91,255,0.25),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.stripe-tip-custom-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(99,91,255,0.3);
}

/* Stripe inline logo in button */
.stripe-tip-stripe-logo {
  width: 38px;
  height: auto;
  fill: currentColor;
  color: rgba(255,255,255,0.85);
}

/* Ko-fi button */
.stripe-tip-kofi-submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #ff5e5b 0%, #e63f3b 100%);
  box-shadow:
    0 4px 14px rgba(230,63,59,0.3),
    0 1px 4px rgba(230,63,59,0.15),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.15s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.stripe-tip-kofi-submit:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ff6f6c 0%, #f04540 100%);
  box-shadow:
    0 8px 22px rgba(230,63,59,0.35),
    0 2px 6px rgba(230,63,59,0.2),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.stripe-tip-kofi-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(230,63,59,0.25);
}

.stripe-tip-custom-note {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
  opacity: 0.6;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .stripe-tip-logo-label {
    /* shorten on medium screens */
    max-width: 160px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .stripe-tip-bar {
    padding: 10px 14px;
    gap: 0;
  }

  .stripe-tip-logo-label {
    display: none;
  }

  .stripe-tip-logo-btn {
    padding: 4px 8px;
    max-width: none;
  }

  .stripe-tip-divider {
    margin: 0 8px;
  }

  .stripe-tip-pill-label {
    display: none;
  }

  .stripe-tip-pill {
    width: 72px;
    min-width: 72px;
    height: 48px;
  }

  .stripe-tip-pills.is-expanded .stripe-tip-pill--extra {
    width: 226px;
    min-width: 96px;
  }

  .stripe-tip-pill-amount {
    font-size: 14px;
  }

  .stripe-tip-arrow {
    height: 48px;
    width: 32px;
    min-width: 32px;
  }

  .stripe-tip-custom-form {
    padding: 10px 14px 14px;
  }

  .stripe-tip-custom-submit {
    font-size: 13px;
    padding: 9px 14px;
  }

  .stripe-tip-kofi-submit {
    font-size: 13px;
    padding: 9px 14px;
  }
}

/* ========================================
   CONFLICT OF INTEREST ANIMATION
   ======================================== */

.animation-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}

#animation-container {
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

#animation-container svg {
    width: 100%;
    height: auto;
    display: block;
}

.anim-node {
  transition: transform 0.3s ease;
}

.node-bg {
  fill: #ffffff;
  stroke: rgba(148, 163, 184, 0.3);
  stroke-width: 1.5px;
  filter: url(#dropShadow);
}

.node-bg--agency {
  fill: #fef2f2;
  stroke: rgba(220, 38, 38, 0.4);
}

.node-bg--itsmyhome {
  fill: #f5f3ff;
  stroke: rgba(124, 58, 237, 0.3);
}

.anim-text-title {
  font-size: 15px;
  font-weight: 700;
  fill: #1f2937;
  text-anchor: middle;
}

.anim-text-subtitle {
  font-size: 11px;
  font-weight: 500;
  fill: #4b5563;
  text-anchor: middle;
}

.anim-text-label {
  font-size: 12px;
  font-weight: 600;
  fill: #c0392b;
  text-anchor: middle;
}

.anim-text-label-2 {
  font-size: 12px;
  font-weight: 600;
  fill: #1e293b;
  text-anchor: middle;
}

/* Updated path styles */
.path-conflict { fill: none; stroke: #dc2626; stroke-width: 3; stroke-linecap: round; }
.path-direct { fill: none; stroke: #22c55e; stroke-width: 2.5; stroke-linecap: round; }
.path-dashed { fill: none; stroke: #7c3aed; stroke-width: 2.5; stroke-dasharray: 5,5; stroke-linecap: round; }



.form-row-gdpr {
  margin: 12px 0 16px;
}

.gdpr-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.gdpr-label input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
}

.gdpr-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.gdpr-text a {
  color: var(--violet);
  text-decoration: underline;
}