/* ===========================================================
   Cliniclic — Landing Page
   Brand tokens lifted from the product (navy / teal / cyan, Inter)
   =========================================================== */

:root {
  /* Core brand */
  --navy:        hsl(224 64% 33%);   /* primary medical blue */
  --navy-600:    hsl(224 64% 28%);
  --navy-900:    hsl(222 47% 11%);   /* near-black ink / sidebar */
  --navy-800:    hsl(222 44% 16%);
  --teal:        hsl(173 58% 39%);   /* accent teal */
  --cyan:        #07d0d0;            /* logo cyan */
  --cyan-soft:   #e6fbfb;

  /* Neutrals */
  --ink:         hsl(222 47% 11%);
  --ink-2:       hsl(222 30% 25%);
  --muted:       hsl(215 16% 47%);
  --line:        hsl(214 32% 91%);
  --line-soft:   hsl(214 32% 94%);
  --bg:          hsl(210 20% 98%);
  --bg-2:        hsl(210 33% 96%);
  --card:        #ffffff;
  --surface-tint:hsl(190 60% 97%);

  /* Status (from app) */
  --success:     hsl(142 64% 42%);
  --success-bg:  hsl(142 60% 95%);
  --warning:     hsl(38 92% 50%);
  --warning-bg:  hsl(38 95% 95%);
  --danger:      hsl(0 78% 58%);
  --danger-bg:   hsl(0 80% 96%);
  --purple:      hsl(255 60% 62%);
  --purple-bg:   hsl(255 70% 96%);

  --accent:      var(--teal);

  /* Radii + shadow */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-card: 0 1px 3px rgb(15 23 42 / .06), 0 1px 2px rgb(15 23 42 / .04);
  --shadow-soft: 0 12px 30px -12px rgb(15 23 42 / .12);
  --shadow-float: 0 26px 60px -22px rgb(15 23 42 / .28), 0 8px 18px -10px rgb(15 23 42 / .14);

  --maxw: 1180px;
  --nav-h: 70px;
  --page-x: 28px;

  /* Type scale */
  --fs-display: clamp(40px, 6.2vw, 74px);
  --fs-section: clamp(32px, 4.4vw, 50px);
  --fs-block:   clamp(24px, 2.8vw, 32px);
  --fs-card:    17px;
  --fs-feature: 16px;
  --fs-body:    15px;
  --fs-lg:      18px;
  --fs-sm:      14px;
  --fs-xs:      13px;

  /* Spacing scale */
  --space-xs:  8px;
  --space-sm:  12px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 40px;
  --space-3xl: 48px;
  --space-4xl: 56px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: clip;
  max-width: 100%;
}

main { overflow-x: clip; max-width: 100%; }

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; line-height: 1.05; font-weight: 800; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--page-x); }
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 78px 0; }

/* ---------- Reusable type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: .9;
}
.h-display { font-size: var(--fs-display); line-height: 0.98; }
.h-section { font-size: var(--fs-section); line-height: 1.02; }
.h-block { font-size: var(--fs-block); line-height: 1.08; font-weight: 800; letter-spacing: -0.02em; }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); line-height: 1.6; }
.text-body { font-size: var(--fs-body); color: var(--muted); line-height: 1.55; }
.accent-word { color: var(--accent); }
.cyan-word { color: var(--cyan); }
.ink-soft { color: var(--muted); }

/* Icon boxes — cyan soft bg + teal icon (brand pattern) */
.ic-box {
  flex: none; display: grid; place-items: center;
  background: var(--cyan-soft); color: var(--teal);
}
.ic-box--sm { width: 38px; height: 38px; border-radius: 11px; }
.ic-box--sm svg { width: 19px; height: 19px; }
.ic-box--md { width: 44px; height: 44px; border-radius: 12px; }
.ic-box--md svg { width: 22px; height: 22px; }
.ic-box--lg { width: 50px; height: 50px; border-radius: 14px; }
.ic-box--lg svg { width: 24px; height: 24px; }
.ic-box--solid { background: var(--teal); color: #fff; }

/* Shared vertical rhythm */
.eyebrow + .h-section,
.eyebrow + .h-display { margin-top: var(--space-md); }
.h-section + .lead,
.h-display + .lead { margin-top: var(--space-lg); }
.lead + .feature-list,
.lead + .status-legend { margin-top: var(--space-xl); }
.feature-list + .cta-row,
.tab-feats + .tab-cta { margin-top: var(--space-2xl); }
.cta-row--push { margin-top: var(--space-2xl); }
.cta-row--push-lg { margin-top: var(--space-3xl); }
.cta-row--center { justify-content: center; }
.eyebrow--center { justify-content: center; display: flex; }
.section__head { margin-bottom: var(--space-3xl); }
.section__head--tight { margin-bottom: var(--space-md); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 650; font-size: 15.5px; border: 1px solid transparent;
  padding: 0 22px; height: 50px; border-radius: 12px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--navy); color: #fff;
  box-shadow: 0 10px 22px -12px hsl(224 64% 33% / .8);
}
.btn--primary:hover { background: var(--navy-600); transform: translateY(-2px); box-shadow: 0 16px 30px -14px hsl(224 64% 33% / .85); }
.btn--accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 10px 22px -12px hsl(173 58% 39% / .9);
}
.btn--accent:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn--ghost {
  background: #fff; color: var(--ink); border-color: var(--line);
  box-shadow: var(--shadow-card);
}
.btn--ghost:hover { border-color: hsl(214 32% 80%); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -16px rgb(0 0 0 / .4); }
.btn--sm { height: 42px; padding: 0 16px; font-size: 14.5px; border-radius: 10px; }
.btn--lg { height: 56px; padding: 0 30px; font-size: 16.5px; }

.cta-note {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--muted); font-weight: 500;
}
.cta-note svg { width: 15px; height: 15px; color: var(--teal); }

.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: hsl(210 20% 98% / .82);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: hsl(210 20% 98% / .92); }
.nav__inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--page-x); height: 100%;
  display: flex; align-items: center; gap: 30px; }
.brand { display: flex; align-items: center; }
.brand__logo { display: block; height: 34px; width: auto; object-fit: contain; }
.nav__links { display: flex; gap: 6px; margin-left: 8px; }
.nav__links a {
  font-size: 14.5px; font-weight: 550; color: var(--ink-2);
  padding: 9px 13px; border-radius: 9px; transition: background .15s, color .15s;
}
.nav__links a:hover { background: hsl(210 30% 92%); color: var(--ink); }
.nav__actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav__login { font-size: 14.5px; font-weight: 600; color: var(--ink-2); padding: 9px 8px; }
.nav__login:hover { color: var(--navy); }
.nav__burger { display: none; }

/* ---------- Hero shared ---------- */
.hero { padding-top: 64px; padding-bottom: 92px; overflow: clip; position: relative; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero__bg::before {
  content: ""; position: absolute; top: -240px; right: -180px;
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, hsl(186 70% 92% / .9), transparent 62%);
}
.hero__bg::after {
  content: ""; position: absolute; bottom: -300px; left: -160px;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, hsl(224 64% 92% / .55), transparent 64%);
}
.ring { position: absolute; border: 1.5px solid hsl(186 60% 80% / .5); border-radius: 50%; }

.badge-pill {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px 7px 9px; font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  box-shadow: var(--shadow-card);
}
.badge-pill .dot {
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cyan-soft); color: var(--teal);
}
.badge-pill .dot svg { width: 13px; height: 13px; }

/* Hero variant visibility */
.hero-variant { display: none; }
[data-hero="a"] #hero-a { display: block; }
[data-hero="b"] #hero-b { display: block; }
[data-hero="c"] #hero-c { display: block; }

/* Hero A — split text + photo with floating card */
.heroA__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.heroA__copy { max-width: 560px; }
.heroA__copy .h-display { margin: var(--space-lg) 0 0; }
.heroA__copy .h-display + .lead { margin-top: var(--space-2xl); max-width: 480px; }
.heroA__copy .lead + .heroA__cta { margin-top: var(--space-3xl); }
.heroA__trust { margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.trust-avatars { display: flex; }
.trust-avatars img, .trust-avatars span {
  width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid var(--bg);
  margin-left: -10px; object-fit: cover; background: var(--bg-2);
}
.trust-avatars span { display: grid; place-items: center; font-size: 12px; font-weight: 700; color: var(--navy); background: var(--cyan-soft); }
.trust-text { font-size: 13.5px; color: var(--muted); }
.trust-text b { color: var(--ink); }

.heroA__visual { position: relative; }
.heroA__photo {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-float); aspect-ratio: 4 / 4.4; background: var(--bg-2);
}
.heroA__photo img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute; background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--shadow-float); border: 1px solid hsl(214 32% 91% / .8);
}

/* Hero B — centered + dashboard below */
.heroB { text-align: center; position: relative; z-index: 1; }
.heroB__copy { max-width: 820px; margin: 0 auto; }
.heroB .badge-pill { margin-bottom: var(--space-lg); }
.heroB__title {
  display: flex; flex-direction: column; align-items: center;
  margin: 0 auto; text-align: center;
}
.heroB__title-line { display: block; }
.hero-rotate-wrap {
  display: inline-grid; vertical-align: baseline;
}
.hero-rotate-sizer {
  grid-area: 1 / 1; visibility: hidden; user-select: none; pointer-events: none;
}
.hero-rotate {
  grid-area: 1 / 1; justify-self: end; align-self: baseline;
}
.hero-rotate.is-active::after {
  content: ""; display: inline-block; width: 2px; height: 0.82em;
  background: var(--accent); margin-left: 2px; vertical-align: -0.06em;
  animation: heroCaret .85s step-end infinite;
}
@keyframes heroCaret { 50% { opacity: 0; } }
.heroB .h-display + .lead { margin-top: var(--space-2xl); }
.heroB .lead { margin-left: auto; margin-right: auto; max-width: 600px; }
.heroB .lead + .heroB__cta { margin-top: var(--space-3xl); }
.heroB__cta { justify-content: center; }
.heroB__cta + .cta-note { margin-top: var(--space-md); display: flex; justify-content: center; }
.heroB__stage { margin-top: 56px; position: relative; }
.hero-agenda-wrap { position: relative; width: 100%; max-width: 100%; overflow: hidden; }
.hero-agenda-mobile { display: none; }
@media (max-width: 980px) {
  .hero-agenda-desktop { display: none; }
  .hero-agenda-mobile { display: block; }
  .heroB__stage, .heroC__visual { margin-top: 40px; }
}

/* Hero C — left copy, big calendar right, dark accent slab */
.heroC__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.heroC__copy .h-display + .lead { margin-top: var(--space-2xl); max-width: 440px; }
.heroC__copy .lead + .heroC__cta { margin-top: var(--space-3xl); }
.heroC__feats { margin-top: var(--space-xl); display: grid; gap: var(--space-md); }
.heroC__feat { display: flex; gap: var(--space-sm); align-items: flex-start; font-size: var(--fs-sm); color: var(--ink-2); }
.heroC__feat .ic { width: 38px; height: 38px; border-radius: 11px; }

/* ---------- Generic split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split > * { min-width: 0; }
.split__media { overflow: hidden; max-width: 100%; }
.split--reverse .split__media { order: -1; }
.feature-list { display: grid; gap: var(--space-md); margin-top: var(--space-xl); }
.feature-item { display: flex; gap: var(--space-sm); align-items: flex-start; }
.feature-item .fi-ic { width: 38px; height: 38px; border-radius: 11px; }
.feature-item h4 { font-size: var(--fs-feature); font-weight: 700; }
.feature-item p { font-size: var(--fs-sm); color: var(--muted); margin-top: 4px; line-height: 1.5; }
.section__head { max-width: 640px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Status chips band ---------- */
.statusband { background: var(--navy-900); border-radius: var(--r-xl); padding: 56px; color: #fff; position: relative; overflow: hidden; }
.statusband::after { content: ""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, hsl(186 80% 50% / .18), transparent 65%); }
.statusband__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.statusband h2 { color: #fff; }
.statusband .lead { color: hsl(210 30% 80%); }
.status-legend { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.status-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; padding: 7px 13px; border-radius: 999px; background: hsl(222 40% 20%); color: hsl(210 30% 86%); }
.status-tag .sdot { width: 8px; height: 8px; border-radius: 50%; }

/* ---------- Cards grid (para quem) ---------- */
.cards2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.persona {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px; box-shadow: var(--shadow-card); position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.persona:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.persona__ic { margin-bottom: var(--space-lg); }
.persona h3 { font-size: var(--fs-block); }
.persona p { margin-top: var(--space-sm); font-size: var(--fs-body); }
.persona ul { list-style: none; padding: 0; margin: var(--space-lg) 0 0; display: grid; gap: var(--space-sm); }
.persona li { display: flex; gap: var(--space-sm); align-items: flex-start; font-size: var(--fs-sm); color: var(--ink-2); }
.persona li svg { flex: none; width: 18px; height: 18px; color: var(--teal); margin-top: 1px; }
.persona--accent { background: linear-gradient(165deg, hsl(186 64% 97%), #fff); border-color: hsl(186 50% 86%); }
.persona--accent .persona__ic { background: var(--teal); color: #fff; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: 0; text-align: left; padding: var(--space-lg) var(--space-xs); display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); font-size: var(--fs-lg); font-weight: 650; color: var(--ink); }
.faq__q:hover { color: var(--teal); }
.faq__icon { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .25s, background .2s, border-color .2s; color: var(--teal); }
.faq__icon svg { width: 16px; height: 16px; }
.faq__item.open .faq__icon { transform: rotate(45deg); background: var(--teal); color: #fff; border-color: var(--teal); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 8px 26px; font-size: var(--fs-body); color: var(--muted); line-height: 1.65; max-width: 660px; }

/* ---------- Pricing ---------- */
.pricing {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 56px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.pricing__copy .lead { max-width: 420px; }
.pricing__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--teal); background: var(--cyan-soft); padding: 7px 14px; border-radius: 999px;
}
.pricing__badge + .h-section { margin-top: var(--space-md); }
.pricing__card {
  background: linear-gradient(165deg, hsl(224 64% 98%), #fff);
  border: 1px solid hsl(224 40% 88%);
  border-radius: var(--r-lg);
  padding: 36px 34px;
  position: relative;
  overflow: hidden;
}
.pricing__card::before {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, hsl(186 80% 50% / .12), transparent 68%);
}
.pricing__card > * { position: relative; z-index: 1; }
.pricing__price { display: flex; align-items: flex-end; gap: 6px; flex-wrap: wrap; }
.pricing__price .cur { font-size: 22px; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 8px; }
.pricing__price .amt { font-size: clamp(48px, 6vw, 64px); font-weight: 800; color: var(--ink); line-height: .9; letter-spacing: -.03em; }
.pricing__price .per { font-size: var(--fs-body); font-weight: 600; color: var(--muted); margin-bottom: 10px; }
.pricing__highlight {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; font-size: 14.5px; font-weight: 700; color: var(--teal);
  background: var(--cyan-soft); padding: 8px 14px; border-radius: 10px;
}
.pricing__highlight svg { width: 16px; height: 16px; flex: none; }
.pricing__feats { list-style: none; padding: 0; margin: var(--space-xl) 0 0; display: grid; gap: var(--space-sm); }
.pricing__feats li {
  display: flex; gap: var(--space-sm); align-items: flex-start;
  font-size: var(--fs-body); color: var(--ink-2); line-height: 1.45;
}
.pricing__feats li svg { flex: none; width: 20px; height: 20px; color: var(--teal); margin-top: 1px; }
.pricing__feats li b { color: var(--ink); font-weight: 700; }
.pricing__cta { margin-top: 30px; }
.pricing__cta .cta-note { margin-top: 14px; display: flex; }

/* ---------- Final CTA ---------- */
.finalcta { background: linear-gradient(155deg, var(--navy-900), hsl(224 60% 24%)); color: #fff; border-radius: var(--r-xl); padding: 72px 56px; text-align: center; position: relative; overflow: hidden; }
.finalcta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 0%, hsl(186 80% 50% / .16), transparent 50%), radial-gradient(circle at 90% 110%, hsl(224 70% 50% / .35), transparent 55%); }
.finalcta > * { position: relative; z-index: 1; }
.finalcta .h-section { color: #fff; }
.finalcta .lead { color: hsl(210 35% 82%); margin-left: auto; margin-right: auto; max-width: 540px; }
.finalcta .cta-row { justify-content: center; margin-top: var(--space-2xl); }
.finalcta .cta-row + .cta-note { margin-top: var(--space-lg); display: flex; justify-content: center; }
.finalcta .cta-note { color: hsl(210 30% 75%); }
.finalcta .cta-note svg { color: var(--cyan); }

/* ---------- Footer ---------- */
.footer { padding: 64px 0 40px; border-top: 1px solid var(--line); }
.footer__top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer__brand { max-width: 300px; }
.footer__brand p { color: var(--muted); font-size: 14px; margin-top: 14px; }
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 14px; font-weight: 700; }
.footer__col a { display: block; font-size: 14.5px; color: var(--ink-2); padding: 5px 0; }
.footer__col a:hover { color: var(--navy); }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); }

/* ---------- Reveal (kept static & visible — env-safe) ---------- */
.reveal { opacity: 1; }

/* ---------- Modules (stacked, no tabs) ---------- */
.modules-stack { display: grid; gap: clamp(72px, 9vw, 112px); margin-top: var(--space-3xl); }
.seg-wrap { display: flex; justify-content: center; }
.module-block { scroll-margin-top: 90px; }
.tab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.tab-grid > * { min-width: 0; }
.tab-grid.is-reverse .tab-media { order: -1; }
.tab-copy .badge-soft {
  display: inline-flex; align-items: center; gap: 7px; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .03em; text-transform: uppercase; color: var(--teal);
  background: var(--cyan-soft); padding: 6px 13px; border-radius: 999px;
}
.tab-copy .badge-soft + .h-block { margin-top: var(--space-md); }
.tab-copy > p.tab-sub { font-size: var(--fs-body); max-width: 440px; margin-top: var(--space-sm); }
.tab-feats { display: grid; gap: var(--space-md); margin-top: var(--space-xl); }
.tab-feat { display: flex; gap: var(--space-sm); align-items: flex-start; }
.tab-feat .tf-ic { width: 38px; height: 38px; border-radius: 11px; }
.tab-feat h4 { font-size: var(--fs-feature); font-weight: 700; }
.tab-feat p { font-size: var(--fs-sm); color: var(--muted); margin-top: 4px; line-height: 1.5; }
.tab-media { position: relative; min-width: 0; width: 100%; max-width: 100%; overflow: hidden; }
.tab-media > * { width: 100%; max-width: 100%; }
.tab-media .app { box-shadow: var(--shadow-float); max-width: 100%; }
.tab-media--aedit { overflow: hidden; }

/* ---------- Solo vs Equipe (toggle) ---------- */
.seg {
  display: inline-flex; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 5px; gap: 4px; margin: 28px auto 0;
}
.seg-btn {
  font-family: inherit; font-size: 14.5px; font-weight: 650; color: var(--muted);
  background: transparent; border: 0; border-radius: 999px; padding: 11px 22px;
  display: inline-flex; align-items: center; gap: 9px; transition: all .2s ease;
}
.seg-btn svg { width: 17px; height: 17px; }
.seg-btn.active { background: #fff; color: var(--teal); box-shadow: var(--shadow-card); }
.solo-panel { display: none; margin-top: var(--space-3xl); }
.solo-panel.active { display: block; animation: fadeUp .4s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.solo-intro { max-width: 620px; margin: 0 auto var(--space-2xl); text-align: center; }
.solo-intro p { margin-top: var(--space-sm); }
.solo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.solo-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; box-shadow: var(--shadow-card); transition: transform .2s, box-shadow .2s;
}
.solo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.solo-card .sc-ic { margin-bottom: var(--space-md); }
.solo-card h4 { font-size: var(--fs-card); font-weight: 700; }
.solo-card p { font-size: var(--fs-sm); margin-top: var(--space-xs); line-height: 1.55; }
.solo-card .sc-day {
  display: inline-flex; align-items: center; gap: 7px; margin-top: var(--space-sm);
  font-size: var(--fs-xs); font-weight: 650; color: var(--teal);
  background: var(--cyan-soft); padding: 6px 11px; border-radius: 8px;
}
.solo-card .sc-day svg { width: 14px; height: 14px; color: var(--teal); }
.solo-card--accent { background: linear-gradient(165deg, hsl(186 64% 97%), #fff); border-color: hsl(186 50% 86%); }
.solo-card--accent .sc-ic { background: var(--teal); color: #fff; }

/* Apply ic-box pattern to all landing icon wrappers */
.fi-ic, .tf-ic, .heroC__feat .ic { width: 38px; height: 38px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--cyan-soft); color: var(--teal); }
.fi-ic svg, .tf-ic svg, .heroC__feat .ic svg { width: 19px; height: 19px; }
.sc-ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--cyan-soft); color: var(--teal); }
.sc-ic svg { width: 22px; height: 22px; }
.persona__ic { width: 50px; height: 50px; border-radius: 14px; flex: none; display: grid; place-items: center; background: var(--cyan-soft); color: var(--teal); }
.persona__ic svg { width: 24px; height: 24px; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .section { padding: 84px 0; }
  .heroA__grid, .heroC__grid, .split, .statusband__grid, .cards2, .pricing { grid-template-columns: 1fr; }
  .heroA__visual { max-width: 460px; margin: 0 auto; }
  .split--reverse .split__media { order: 0; }
  .statusband { padding: 40px; }
  .nav__links { display: none; }
  .nav__burger { display: grid; }
  .tab-grid, .tab-grid.is-reverse { grid-template-columns: 1fr; gap: 44px; }
  .modules-stack { gap: 80px; }
  .tab-grid.is-reverse .tab-media { order: 0; }
  .solo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root {
    --page-x: 20px;
    --space-3xl: 36px;
    --space-4xl: 48px;
    --space-2xl: 32px;
  }
  .brand__logo { height: 28px; }
  .section { padding: 64px 0; }
  .modules-stack { gap: 64px; }
  .hero { padding-top: 40px; }
  .btn { width: 100%; }
  .cta-row .btn { width: 100%; }
  .finalcta, .statusband, .pricing { padding: 36px 22px; }
  .pricing__card { padding: 28px 22px; }
  .nav__actions { gap: 8px; }
  .nav__login { font-size: 13.5px; padding: 9px 4px; }
  .nav__actions .btn--sm { padding: 0 12px; font-size: 13px; }
}
@media (max-width: 400px) {
  :root { --page-x: 16px; }
}
