/* ============ Profezzo — Vaudit-style homepage ============ */
:root {
  --accent: #c2562e;
  --accent-ink: #ffffff;
  --bg: #faf4ec;
  --bg2: #f3e9db;
  --card: #fffdf9;
  --card2: #fbf3e9;
  --line: rgba(78, 42, 24, 0.12);
  --line-strong: rgba(78, 42, 24, 0.22);
  --text: #33211a;
  --muted: #7c6253;
  --faint: #a68d7c;
  --shadow: rgba(94, 52, 28, 0.14);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --radius-btn: 999px;
  --radius-card: 20px;
}

html[data-theme="dark"] {
  --bg: #1d120b;
  --bg2: #251810;
  --card: #2c1d13;
  --card2: #342418;
  --line: rgba(255, 240, 228, 0.1);
  --line-strong: rgba(255, 240, 228, 0.19);
  --text: #f8efe5;
  --muted: #c0a591;
  --faint: #927b6a;
  --shadow: rgba(0, 0, 0, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

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

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; text-wrap: pretty; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

.accent { color: var(--accent); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  text-align: center;
  letter-spacing: 0.02em;
}
.topbar a { color: inherit; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.topbar .tb-strong { font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; margin-right: 10px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; gap: 36px; height: 76px; }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 60%, #000));
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 19px;
}
.logo-word { font-family: var(--font-head); font-weight: 600; font-size: 21px; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-login { color: var(--text); text-decoration: none; font-size: 15px; font-weight: 500; opacity: 0.85; }
.nav-login:hover { opacity: 1; }
.nav-burger {
  display: none; background: none; border: 1px solid var(--line-strong); color: var(--text);
  border-radius: 10px; width: 42px; height: 42px; font-size: 18px; cursor: pointer;
}
.nav-mobile { display: none; flex-direction: column; gap: 4px; padding: 12px 32px 20px; border-bottom: 1px solid var(--line); }
.nav-mobile a { color: var(--text); text-decoration: none; padding: 10px 0; font-weight: 500; border-bottom: 1px solid var(--line); }
.nav-mobile.open { display: flex; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  border-radius: var(--radius-btn);
  padding: 15px 30px;
  font-family: var(--font-head); font-size: 16px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn .arrow { font-size: 14px; transition: transform 0.2s; }
.btn:hover .arrow { transform: translate(2px, -2px); }
.btn-accent { background: var(--accent); color: var(--accent-ink); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 32px color-mix(in srgb, var(--accent) 40%, transparent); }
.btn-light { background: var(--text); color: var(--bg); }
.btn-light:hover { transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: 14.5px; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--line-strong); }
.btn-outline:hover { border-color: var(--text); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 22px;
}
.eyebrow .lead { color: var(--accent); }

/* ---------- Hero ---------- */
.hero { padding: 90px 0 70px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -30%; right: -15%;
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 9%, transparent), transparent 65%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; position: relative; }
.hero h1 { font-size: clamp(42px, 4.6vw, 68px); margin-bottom: 28px; }
.hero-sub { font-size: 18.5px; color: var(--muted); max-width: 560px; margin-bottom: 38px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-note { margin-top: 26px; font-size: 14px; color: var(--faint); }
.hero-note a { color: var(--accent); text-decoration: none; font-weight: 600; }

/* Orbit visual */
.hero-visual { position: relative; }
.orbit { position: relative; aspect-ratio: 1; max-width: 520px; margin: 0 auto; }
.ring { position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.ring-1 { inset: 0; }
.ring-2 { inset: 11%; border-color: color-mix(in srgb, var(--line) 100%, transparent); }
.ring-3 { inset: 22%; }
.orbit-sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 20deg, transparent 0deg, color-mix(in srgb, var(--accent) 14%, transparent) 70deg, transparent 100deg);
  -webkit-mask: radial-gradient(circle, transparent 25%, #000 26%);
  mask: radial-gradient(circle, transparent 25%, #000 26%);
}
.rotor { position: absolute; inset: 0; animation: orbit-spin 60s linear infinite; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes orbit-counter { to { transform: rotate(-360deg); } }
.node { position: absolute; transform: translate(-50%, -50%); }
.node-inner {
  display: inline-flex; flex-direction: column; align-items: center; gap: 7px;
  animation: orbit-counter 60s linear infinite;
}
.node-ic {
  width: 50px; height: 50px; padding: 13px; box-sizing: border-box;
  border-radius: 50%; background: var(--card); border: 1px solid var(--line-strong);
  box-shadow: 0 8px 24px var(--shadow);
  --icon-stroke: var(--accent);
  transition: transform 0.2s, box-shadow 0.2s;
}
.node-inner:hover .node-ic { transform: translateY(-2px); box-shadow: 0 12px 30px var(--shadow); }
.node-label {
  font-size: 12px; font-weight: 600; white-space: nowrap; color: var(--text);
  background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 2px 10px;
}
.node-ai .node-ic {
  background: linear-gradient(140deg, var(--accent), color-mix(in srgb, var(--accent) 55%, #000));
  border-color: var(--accent); --icon-stroke: #fff;
  box-shadow: 0 0 26px color-mix(in srgb, var(--accent) 40%, transparent), 0 8px 24px var(--shadow);
}
.node-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.orbit-core .core-mark { width: 56%; height: 56%; display: block; }
.logo-img { height: 30px; width: auto; display: block; }
.compare-col.us h3 img.logo-mark-img { width: 28px; height: 28px; vertical-align: middle; margin-right: 9px; }
.orbit-core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 124px; height: 124px; border-radius: 30px;
  background: linear-gradient(140deg, var(--accent), color-mix(in srgb, var(--accent) 50%, #000));
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 52px; color: #fff;
  box-shadow: 0 0 90px color-mix(in srgb, var(--accent) 38%, transparent), 0 24px 48px var(--shadow);
}
.orbit-callout {
  position: absolute; left: -4%; bottom: 16%;
  font-family: var(--font-head); font-weight: 600; font-size: 19px; line-height: 1.25;
  color: var(--accent); max-width: 180px;
}
.orbit-callout .co-tag {
  display: inline-block; margin-top: 8px; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line-strong); border-radius: 6px; padding: 4px 9px;
}

/* Stat strip */
.stat-strip {
  margin-top: 40px;
  border: 1px solid var(--line-strong); border-radius: 16px;
  background: color-mix(in srgb, var(--card) 75%, transparent);
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 22px 10px;
}
.stat-cell { text-align: center; padding: 0 14px; border-right: 1px solid var(--line); }
.stat-cell:last-child { border-right: none; }
.stat-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.stat-value { font-family: var(--font-head); font-size: 24px; font-weight: 600; color: var(--accent); }
.stat-foot { margin-top: 14px; text-align: center; font-size: 13px; color: var(--faint); }

/* ---------- Marquee ---------- */
.marquee-section { padding: 70px 0 30px; }
.marquee-title { text-align: center; font-size: clamp(24px, 2.6vw, 34px); font-weight: 600; max-width: 720px; margin: 0 auto 44px; }
.marquee { overflow: hidden; position: relative; -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee-move 36s linear infinite; }
@keyframes marquee-move { to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 28px; font-family: var(--font-head); font-size: 21px; font-weight: 500;
  color: var(--muted); white-space: nowrap;
}
.marquee-item::after { content: "·"; color: var(--accent); margin-left: 28px; font-size: 26px; }

/* ---------- Big band ---------- */
.band { padding: 130px 0; text-align: center; position: relative; overflow: hidden; }
.band::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 1100px; height: 600px;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--accent) 11%, transparent), transparent 65%);
  pointer-events: none;
}
.band h2 { font-size: clamp(46px, 6.5vw, 92px); position: relative; }
.band p { position: relative; margin-top: 18px; color: var(--muted); font-size: 18px; }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-alt { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 820px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(34px, 3.8vw, 54px); margin-bottom: 20px; }
.section-sub { font-size: 19px; color: var(--muted); font-weight: 400; line-height: 1.55; }

/* ---------- Pillar cards ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 34px 28px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.25s, border-color 0.25s;
}
.pillar:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.pillar-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }
.pillar h3 { font-size: 21.5px; }
.pillar p { font-size: 15px; color: var(--muted); flex: 1; }
.chiprow { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 12px; font-weight: 600; color: var(--muted);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 5px 12px;
}

/* ---------- Comparison ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-col { border-radius: var(--radius-card); padding: 42px 40px; border: 1px solid var(--line); background: var(--card); }
.compare-col.them { opacity: 0.92; }
.compare-col.us { border-color: color-mix(in srgb, var(--accent) 55%, var(--line)); background: var(--card2); position: relative; }
.compare-col.us::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-card);
  background: radial-gradient(600px 300px at 80% -10%, color-mix(in srgb, var(--accent) 10%, transparent), transparent);
  pointer-events: none;
}
.compare-col h3 { font-size: 24px; margin-bottom: 28px; display: flex; align-items: center; gap: 12px; }
.compare-col.us h3 .logo-mark { width: 30px; height: 30px; font-size: 16px; border-radius: 8px; }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.compare-list li { display: flex; gap: 14px; font-size: 15.5px; color: var(--muted); line-height: 1.5; }
.compare-col.us .compare-list li { color: var(--text); }
.mark { flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; margin-top: 1px; }
.mark.x { border: 1px solid var(--line-strong); color: var(--faint); }
.mark.check { background: color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { border-top: 1px solid var(--line-strong); padding-top: 26px; }
.step-num {
  font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--accent);
  letter-spacing: 0.08em; margin-bottom: 16px;
}
.step h3 { font-size: 20px; margin-bottom: 12px; }
.step p { font-size: 15px; color: var(--muted); }

/* ---------- Approach ---------- */
.approach { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.approach-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 40px 34px; transition: transform 0.25s, border-color 0.25s;
}
.approach-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.approach-num {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  color: var(--accent); display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-bottom: 24px;
}
.approach-card h3 { font-size: 23px; margin-bottom: 14px; }
.approach-card p { font-size: 15.5px; color: var(--muted); }

/* ---------- Industries ---------- */
.ind-group-label { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--faint); margin: 48px 0 18px; }
.ind-group-label:first-of-type { margin-top: 0; }
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ind-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 24px; transition: border-color 0.25s, transform 0.25s;
}
.ind-card:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); transform: translateY(-4px); }
.ind-card h3 { font-size: 18px; margin-bottom: 9px; display: flex; align-items: center; gap: 10px; }
.ind-card h3 .node-dot { flex: none; }
.ind-card p { font-size: 14px; color: var(--muted); }
.ind-foot { margin-top: 40px; font-size: 15px; color: var(--muted); }
.ind-foot a { color: var(--accent); text-decoration: none; font-weight: 600; }

/* ---------- Work ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 36px 32px; display: flex; flex-direction: column; gap: 18px;
  transition: transform 0.25s, border-color 0.25s;
}
.work-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.work-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.work-card h3 { font-size: 22px; }
.work-row { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.work-row strong { color: var(--text); font-weight: 600; display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.work-cta { margin-top: 52px; text-align: center; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  font-family: var(--font-head); font-size: 19px; font-weight: 600; text-align: left;
  padding: 26px 8px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: grid; place-items: center;
  font-size: 16px; font-weight: 400; color: var(--accent);
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: color-mix(in srgb, var(--accent) 15%, transparent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 8px 26px; color: var(--muted); font-size: 16px; max-width: 720px; }

/* ---------- Closing CTA ---------- */
.closing { padding: 150px 0; text-align: center; position: relative; overflow: hidden; }
.closing::before {
  content: ""; position: absolute; left: 50%; bottom: -40%; transform: translateX(-50%);
  width: 1200px; height: 700px;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--accent) 14%, transparent), transparent 65%);
  pointer-events: none;
}
.closing h2 { font-size: clamp(42px, 5.5vw, 78px); margin-bottom: 24px; position: relative; }
.closing p { color: var(--muted); font-size: 18.5px; max-width: 620px; margin: 0 auto 40px; position: relative; }
.closing .hero-ctas { justify-content: center; position: relative; }
.closing-foot { margin-top: 28px; font-size: 14px; color: var(--faint); position: relative; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 80px 0 36px; background: var(--bg2); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 64px; }
.footer h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 15px; margin-top: 16px; max-width: 280px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { color: var(--muted); text-decoration: none; font-size: 15px; transition: color 0.2s; }
.footer ul a:hover { color: var(--text); }
.footer-cta-col p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 28px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--faint);
}

/* ---------- Reveal animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }
  .reveal-d1 { transition-delay: 0.08s; }
  .reveal-d2 { transition-delay: 0.16s; }
  .reveal-d3 { transition-delay: 0.24s; }
}
@media (prefers-reduced-motion: reduce) {
  .rotor, .node-inner, .marquee-track { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .pillars, .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }
}
@media (max-width: 900px) {
  .nav-links, .nav-login { display: none; }
  .nav-burger { display: block; }
  .compare, .approach, .work-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .pillars, .ind-grid, .steps { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; gap: 18px; }
  .stat-cell { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .orbit-callout { position: static; margin-top: 20px; max-width: none; }
  .container { padding: 0 22px; }
  .section { padding: 80px 0; }
}

/* Platform modules section */
.modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
#system .section-head { margin-bottom: 36px; }
.module-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 26px 24px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s, border-color .2s; }
.module-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px var(--shadow); border-color: var(--line-strong); }
.module-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.module-ic { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: color-mix(in srgb, var(--accent) 10%, var(--card)); border: 1px solid var(--line); --icon-stroke: var(--accent); }
.module-ic svg { width: 24px; height: 24px; }
.module-num { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--faint); }
.module-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.module-desc { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin-bottom: 16px; }
.module-feats { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: auto; }
.module-feats li { position: relative; padding-left: 22px; font-size: 13.5px; color: var(--text); line-height: 1.45; }
.module-feats li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
.module-card-hi { background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 8%, var(--card)), var(--card)); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.module-card-hi .module-ic { background: var(--accent); border-color: var(--accent); --icon-stroke: #fff; }
.also-included { margin-top: 44px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.also-label { font-family: var(--font-head); font-weight: 600; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
@media (max-width: 900px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .modules-grid { grid-template-columns: 1fr; } }
