:root {
  color-scheme: light;
  --primary: #337ea9;
  --primary-dark: #2a6889;
  --primary-light: #dbebf1;
  --ink: #14202b;
  --ink-soft: #4b5b66;
  --paper: #ffffff;
  --paper-soft: #f6f8fa;
  --beige: #f4efe6;
  --border: #e6ebee;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-card: 0 20px 45px -20px rgba(20, 32, 43, 0.18);
  --shadow-soft: 0 10px 30px -12px rgba(20, 32, 43, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--ink);
}

.brand img {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  background: var(--paper-soft);
}

.lang-toggle button {
  border: none;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}

.lang-toggle button.active {
  background: var(--ink);
  color: #fff;
}

/* Pages légales (/terms, /privacy) : pages statiques séparées par langue plutôt qu'un toggle en
   place (voir legal.js) — mêmes boutons visuellement, mais de vrais liens <a> vers la page sœur. */
.lang-toggle a {
  border: none;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  text-decoration: none;
}

.lang-toggle a.active {
  background: var(--ink);
  color: #fff;
}

.nav-lang-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(51, 126, 169, 0.55);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 16px 30px -10px rgba(51, 126, 169, 0.65);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 70px;
  background: linear-gradient(180deg, var(--primary-light) 0%, rgba(219, 235, 241, 0) 100%);
  overflow: hidden;
}

.hero-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 22px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  background: #4caf7d;
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 auto 34px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Composite: desktop screenshot large, tablet + mobile overlapping at the
   bottom-right corner — shows the same product working on every screen size
   in a single glance, rather than three separate flat images. */
.hero-shot-wrap {
  position: relative;
  margin: 56px auto 0;
  max-width: 1040px;
  padding-bottom: 60px;
}

.hero-shot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  background: #fff;
}

.hero-shot-desktop {
  width: 100%;
}

.hero-shot-tablet {
  position: absolute;
  width: 26%;
  right: 12%;
  bottom: -40px;
  border-radius: var(--radius-md);
  border-width: 3px;
  border-color: #fff;
  box-shadow: 0 16px 32px -14px rgba(20, 32, 43, 0.3);
}

.hero-shot-mobile {
  position: absolute;
  width: 14%;
  right: 0;
  bottom: -60px;
  border-radius: 12px;
  border-width: 3px;
  border-color: #fff;
  box-shadow: 0 16px 32px -14px rgba(20, 32, 43, 0.32);
}

/* Hero simplifié à UNE seule capture dominante (retour utilisateur : moins de texte, un seul
   visuel qui domine, jamais un montage à trois appareils). */
.hero-shot-single {
  padding-bottom: 0;
}

/* ---------- Wave separators ---------- */
.wave {
  display: block;
  width: 100%;
  height: 60px;
  margin-top: -1px;
}

.wave path {
  fill: var(--paper-soft);
}

.wave.flip {
  transform: scaleY(-1);
}

/* ---------- Section scaffolding ---------- */
section {
  position: relative;
}

.section-pad {
  padding: 96px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-head .kicker {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.bg-soft {
  background: var(--paper-soft);
}

/* ---------- Feature showcase (alternating) ---------- */
.showcase {
  display: flex;
  flex-direction: column;
  gap: 110px;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.showcase-row.reverse .showcase-text {
  order: 2;
}

.showcase-row.reverse .showcase-img {
  order: 1;
}

.showcase-text .tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.showcase-text h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.showcase-text p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 22px;
}

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

.showcase-text li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.showcase-text li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}

.showcase-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

/* ---------- Feature grid ---------- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grid-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.grid-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.grid-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.grid-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* ---------- How it works (ask -> Shefy prepares -> confirm -> automate) ---------- */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.workflow-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}

/* Flèche de continuité entre étapes, desktop uniquement — jamais sur la dernière carte. */
.workflow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--border);
  border-right: 2px solid var(--border);
  transform: translateY(-50%) rotate(45deg);
}

.workflow-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.workflow-step h4 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.workflow-step p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.workflow-step .workflow-example {
  display: inline-block;
  background: var(--paper-soft);
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-style: italic;
  color: var(--ink);
  font-size: 0.88rem;
}

.workflow-tagline {
  text-align: center;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.05rem;
  margin: 44px 0 0;
}

/* How it works: 2x2 step grid alongside a real screenshot of the Assistant Shefy proposal —
   proof, not just an illustration of the claim. */
.howitworks-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.workflow-steps-stack {
  grid-template-columns: repeat(2, 1fr);
}

.workflow-steps-stack .workflow-step::after {
  display: none;
}

.howitworks-visual {
  justify-self: center;
}

.howitworks-visual img {
  max-width: 320px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

/* ---------- Customer lifecycle ---------- */
.lifecycle-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
}

.lifecycle-track::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--primary-light) 0 8px, transparent 8px 14px);
  z-index: 0;
}

.lifecycle-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.lifecycle-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 14px;
  box-shadow: 0 0 0 6px var(--paper);
}

.lifecycle-step h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.lifecycle-step p {
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* ---------- Bento grid ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 20px;
}

.bento-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  min-width: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.bento-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bento-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.bento-card p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.bento-large {
  grid-column: span 2;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-image img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}

/* Assistant Shefy screenshot is near-square — forcing the same 16:10 crop as a dashboard
   screenshot would cut off most of its content, so it gets its own taller ratio and shows in
   full (contain) rather than being cropped. */
.bento-portrait img {
  height: auto;
  aspect-ratio: 4 / 3.6;
  object-fit: contain;
  object-position: top;
  background: #fff;
  padding-top: 14px;
}

.bento-large .bento-text {
  padding: 22px 26px;
}

.bento-large h4 {
  font-size: 1.05rem;
}

/* ---------- Soon badge & inline disclosures ---------- */
.badge-soon {
  display: inline-block;
  background: var(--beige);
  color: #8a6d1f;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-top: 14px;
}

.compliance-details {
  margin: 0 0 36px;
}

.compliance-details summary {
  cursor: pointer;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 4px 0;
  list-style: none;
}

.compliance-details summary::-webkit-details-marker {
  display: none;
}

.compliance-details summary::before {
  content: "+ ";
}

.compliance-details[open] summary::before {
  content: "– ";
}

.compliance-details .compliance-facts {
  margin-top: 20px;
}

.pricing-shared-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 36px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pricing-shared-note .badge-soon {
  margin-top: 0;
}

/* ---------- Real workflows (chained steps, not isolated features) ---------- */
.workflow-chains {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.workflow-chain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
}

.workflow-chain-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 10px 0 20px;
}

.chain {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.chain span {
  background: var(--paper-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  white-space: nowrap;
}

.chain-arrow {
  color: var(--primary);
  flex-shrink: 0;
}

.workflow-chain-card > p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Devices strip ---------- */
.devices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.9rem;
}

.device-item svg {
  color: var(--primary);
}

/* ---------- Pricing ---------- */
.billing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.billing-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  background: var(--paper-soft);
}

.billing-switch button {
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 700;
  padding: 9px 18px;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
}

.billing-switch button.active {
  background: var(--ink);
  color: #fff;
}

.save-badge {
  background: #e4f5ec;
  color: #1e8a54;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
}

.billing-switch button:not(.active) .save-badge {
  background: rgba(30, 138, 84, 0.12);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-card);
  position: relative;
  transform: translateY(-8px);
}

.price-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.price-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.price-card .plan-desc {
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin: 0 0 22px;
  min-height: 40px;
}

.price-card .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 26px;
}

.price-card .price .amount {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price-card .price .period {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
}

.price-card .trial-note {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin: -14px 0 22px;
}

.price-card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex-grow: 1;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink);
}

.price-card li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}

.price-card li.muted {
  color: #b7bec3;
}

.price-card li.muted svg {
  color: #d3d8db;
}

.price-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-top: 36px;
}

.price-note + .price-note {
  margin-top: 10px;
}

/* ---------- Compliance (facturation électronique, FR uniquement) ---------- */
.compliance-dates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.compliance-date-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
}

.compliance-date {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.compliance-date-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.compliance-facts {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}

.compliance-facts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.55;
}

.compliance-facts li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary);
}

.compliance-cta {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: #fff;
}

.compliance-cta h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 14px;
}

.compliance-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 640px;
}

/* Section entièrement française — la réforme de facturation électronique décrite ici est une
   obligation légale française, sans équivalent pour les autres marchés visés par la version EN. */
html:not([lang="fr"]) .compliance-section {
  display: none;
}

/* ---------- Contact ---------- */
.contact-card {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(122, 162, 247, 0.35), transparent 70%);
  top: -160px;
  right: -120px;
}

.contact-card h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-actions .btn-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.contact-actions .btn-primary:hover {
  background: var(--primary-light);
}

.contact-email {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  text-align: center;
}

.contact-email a {
  color: #fff;
  text-decoration: underline;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
}

.footer-brand img {
  width: 26px;
  height: 26px;
}

.footer-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-copy {
  color: #9aa5ab;
  font-size: 0.82rem;
}

/* Ligne "Legal / Compliance" discrète (OPP onboarding, 2026-09-14) — volontairement plus petite
   et plus sourde que .footer-links (jamais dans la navigation principale), une simple rangée
   d'ancrage pour un lecteur qui les cherche (ex. un partenaire de paiement en revue), pas un
   appel à l'action. */
.footer-compliance {
  width: 100%;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 0.78rem;
}

.footer-compliance-label {
  color: #9aa5ab;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
}

.footer-compliance a {
  color: #9aa5ab;
  text-decoration: none;
}

.footer-compliance a:hover {
  color: var(--primary);
}


/* ---------- Device composition (hero) ---------- */
.device-composition {
  position: relative;
  max-width: 1080px;
  margin: 64px auto 0;
  padding-bottom: 90px;
}

.device {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.device img {
  width: 100%;
  height: auto;
  display: block;
}

.device-desktop {
  position: relative;
  z-index: 2;
  width: 100%;
}

.device-tablet {
  position: absolute;
  z-index: 3;
  width: 32%;
  left: 0;
  bottom: -64px;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 44px -18px rgba(20, 32, 43, 0.24);
}

.device-mobile {
  position: absolute;
  z-index: 3;
  width: 15%;
  right: 6%;
  bottom: -84px;
  border-radius: 16px;
  box-shadow: 0 24px 44px -16px rgba(20, 32, 43, 0.3);
}

/* ---------- Moment (short headline + dominant visual, reused by several sections) ---------- */
.moment {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.moment-reverse {
  grid-template-columns: 1.1fr 1fr;
}

.moment-reverse .moment-text {
  order: 1;
}

.moment-reverse .moment-visual {
  order: 2;
}

.moment-text .kicker {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.moment-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.moment-text p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin: 0;
}

.moment-visual {
  display: flex;
  justify-content: center;
}

.moment-stacked {
  grid-template-columns: 1fr;
  text-align: center;
}

.moment-stacked .moment-text {
  max-width: 560px;
  margin: 0 auto 36px;
}

.moment-visual-wide {
  width: 100%;
}

.moment-visual-wide img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

/* ---------- Assistant Shefy visual: chat bubble -> real proposal screenshot ---------- */
.assistant-visual {
  flex-direction: column;
  gap: 14px;
}

.chat-bubble {
  align-self: flex-end;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 14px 20px;
  border-radius: 18px 18px 4px 18px;
  max-width: 380px;
  box-shadow: 0 12px 24px -12px rgba(51, 126, 169, 0.5);
}

.chat-arrow {
  align-self: flex-end;
  margin-right: 24px;
  color: var(--primary);
}

.assistant-shot {
  width: 100%;
  height: auto;
  max-width: 380px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

/* ---------- Business flow: icon chain with animated connector ---------- */
.flow-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 84px;
}

.flow-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.flow-icon-done {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.flow-label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}

.flow-connector {
  flex: 1;
  min-width: 24px;
  max-width: 64px;
  height: 2px;
  background: var(--border);
  position: relative;
  overflow: hidden;
  top: -13px;
}

.flow-connector::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.flow-chain.is-revealed .flow-connector::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .flow-connector::after {
    transition: none;
    transform: scaleX(1);
  }
}

/* ---------- Document AI: visual transformation, no explanation ---------- */
.doc-transform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
}

.doc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 26px 24px;
}

.doc-card-before {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
  width: 150px;
}

.doc-arrow {
  color: var(--primary);
  flex-shrink: 0;
}

.doc-sparkle {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.doc-card-after {
  width: 260px;
  text-align: left;
}

.doc-after-title {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 10px;
}

.doc-after-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 6px 0;
  border-top: 1px solid var(--border);
}

.doc-after-date {
  color: var(--ink-soft);
  font-size: 0.85rem;
  border-top: none;
  padding-top: 0;
}

.doc-after-confirm {
  margin-top: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  padding: 9px 0;
  border-radius: 999px;
}

/* ---------- Automation diagram ---------- */
.automation-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.automation-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  min-width: 76px;
}

.automation-node .flow-icon {
  font-size: 1.3rem;
}

.automation-line {
  width: 48px;
  height: 2px;
  background: var(--border);
}

.automation-hub-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 6px;
  flex-shrink: 0;
}

.automation-hub {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.automation-hub-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
}

.automation-branches {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  padding-left: 40px;
}

.automation-line-branch {
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
}

/* ---------- Bento image tiles (secondary features) ---------- */
.bento-card.bento-image img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--border);
}

/* ---------- Electronic invoicing: compact visual flow ---------- */
.einvoice-flows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin: 0 0 28px;
}

.einvoice-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.chain-arrow-sm {
  color: var(--primary);
  font-weight: 800;
}

.einvoice-node {
  color: var(--primary-dark);
}

/* ---------- Recharge guarantee banner (always visible, not hidden behind a click) ---------- */
.recharge-banner {
  max-width: 780px;
  margin: 8px auto 44px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 18px 26px;
}

.recharge-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.recharge-banner p {
  margin: 0;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.98rem;
}

/* ---------- Pricing comparison (always visible — no disclosure) ---------- */
.pricing-compare {
  max-width: 900px;
  margin: 0 auto 8px;
  text-align: center;
}

.pricing-compare-title {
  color: var(--ink);
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.pricing-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  text-align: left;
}

.pricing-compare-grid h5 {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 10px;
}

.pricing-compare-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-compare-grid li {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.pricing-compare-grid li.muted {
  color: #b7bec3;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 40;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
    /* Bug corrigé (retour utilisateur : "le menu passe par-dessus le header à l'ouverture") — le
       z-index seul ne pouvait rien y faire : un enfant à z-index positif peint TOUJOURS au-dessus
       du fond de son propre parent (.nav), quel que soit ce z-index — ce n'était donc jamais un
       problème d'empilement. Le vrai coupable était translateY(-130%) → translateY(0) : fermé, le
       panneau était positionné AU-DESSUS du viewport (donc par-dessus l'écran du header) et
       glissait ensuite À TRAVERS la zone du header pendant l'ouverture. max-height (jamais de
       position hors de sa propre zone, sous le header) supprime le survol au lieu de le masquer
       derrière un z-index qui ne pouvait pas fonctionner.
    */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav-links.open {
    max-height: 80vh;
    padding: 20px 24px;
    overflow-y: auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-lang-mobile {
    display: block;
    margin-top: 4px;
  }

  .nav-actions .lang-toggle,
  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-inner {
    justify-content: flex-start;
  }

  .nav-actions {
    gap: 10px;
    margin-left: auto;
    order: 2;
  }

  .nav-toggle {
    order: 3;
    margin-left: 4px;
  }

  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: 1fr;
  }

  .showcase-row .showcase-text,
  .showcase-row.reverse .showcase-text,
  .showcase-row .showcase-img,
  .showcase-row.reverse .showcase-img {
    order: initial;
  }

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

  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  /* La flèche de continuité entre étapes n'a de sens que dans une seule ligne continue —
     supprimée dès que les cartes passent sur 2 colonnes (voir la même règle à 560px, jamais
     de flèche du tout en pile verticale). */
  .workflow-step::after {
    display: none;
  }

  .workflow-chains {
    grid-template-columns: 1fr;
  }

  .howitworks-layout {
    grid-template-columns: 1fr;
  }

  .howitworks-visual {
    order: -1;
  }

  .lifecycle-track {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lifecycle-track::before {
    top: 10%;
    bottom: 10%;
    left: 17px;
    right: auto;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(to bottom, var(--primary-light) 0 8px, transparent 8px 14px);
  }

  .lifecycle-step {
    text-align: left;
    padding-left: 52px;
  }

  .lifecycle-dot {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }

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

  .bento-large {
    grid-column: span 2;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .price-card.featured {
    transform: none;
  }

  .compliance-dates {
    grid-template-columns: 1fr;
  }

  .compliance-cta {
    padding: 36px 28px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 44px 28px;
    text-align: center;
  }

  .contact-actions {
    align-items: center;
  }

  .moment,
  .moment-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .moment-reverse .moment-text,
  .moment-reverse .moment-visual {
    order: initial;
  }

  .moment-text {
    text-align: center;
  }

  .assistant-visual {
    align-items: center;
  }

  .chat-bubble,
  .chat-arrow {
    align-self: center;
    margin-right: 0;
  }

  .device-composition {
    padding-bottom: 70px;
  }

  .device-tablet {
    width: 30%;
    left: 0;
    bottom: -48px;
  }

  .device-mobile {
    width: 15%;
    bottom: -64px;
  }

  .flow-chain {
    gap: 10px;
  }

  .flow-connector {
    max-width: 32px;
    min-width: 16px;
  }

  .pricing-compare-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .section-pad {
    padding: 64px 0;
  }

  .hero {
    padding: 56px 0 40px;
  }

  .grid-cards {
    grid-template-columns: 1fr;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-chains {
    grid-template-columns: 1fr;
  }

  .workflow-steps-stack {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-large {
    grid-column: span 1;
  }

  .showcase {
    gap: 70px;
  }

  .contact-card {
    padding: 36px 20px;
  }

  /* Mobile-specific device composition: the tablet frame disappears (three devices side by
     side would be unreadable at this width) — the desktop frame stays as a partial backdrop
     and the mobile frame becomes the dominant, in-focus screen in front of it. */
  .device-composition {
    max-width: 300px;
    padding-bottom: 0;
    margin-top: 40px;
  }

  .device-desktop {
    width: 92%;
    margin: 0 auto;
    opacity: 0.9;
  }

  .device-tablet {
    display: none;
  }

  .device-mobile {
    width: 48%;
    right: -8%;
    bottom: -36px;
  }

  .flow-chain {
    flex-direction: column;
    gap: 18px;
  }

  .flow-connector {
    width: 2px;
    height: 28px;
    max-width: none;
    min-width: 0;
    top: 0;
  }

  .doc-transform {
    flex-direction: column;
  }

  .doc-arrow {
    transform: rotate(90deg);
  }

  .automation-diagram {
    flex-direction: column;
    gap: 20px;
  }

  .automation-line {
    width: 2px;
    height: 28px;
  }

  .automation-hub-wrap {
    margin: 6px 0;
  }

  .automation-branches {
    flex-direction: column;
    padding-left: 0;
    padding-top: 40px;
    gap: 20px;
  }

  .automation-line-branch {
    left: 50%;
    top: 0;
    width: 2px;
    height: 40px;
    transform: translateX(-50%);
  }

  .einvoice-flow {
    font-size: 0.8rem;
    padding: 10px 16px;
  }
}

/* ---------- Legal documents (Terms of Service / Privacy Policy) ----------
   Ajouté pour les pages /terms et /privacy (production readiness / OPP onboarding,
   2026-09-14) — réutilise les tokens de couleur/rayon/ombre du reste du site plutôt que
   d'introduire une nouvelle palette, pour rester visuellement cohérent avec le reste de
   shefy-landing (même police, mêmes couleurs, même nav/footer). */
.legal-page {
  padding: 48px 0 100px;
}

.legal-header {
  max-width: 760px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.legal-header h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 10px;
}

.legal-meta {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

.legal-lang-switch {
  margin-top: 18px;
  font-size: 0.9rem;
}

.legal-lang-switch a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--primary-light);
  padding-bottom: 1px;
}

.legal-lang-switch a:hover {
  border-color: var(--primary-dark);
}

.legal-toc {
  max-width: 760px;
  margin: 0 auto 44px;
  padding: 22px 26px;
  background: var(--paper-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.legal-toc-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin: 0 0 12px;
}

.legal-toc ol {
  columns: 2;
  column-gap: 28px;
  margin: 0;
  padding-left: 1.15em;
  font-size: 0.87rem;
}

.legal-toc li {
  break-inside: avoid;
  margin-bottom: 5px;
}

.legal-toc a {
  color: var(--ink-soft);
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--primary-dark);
}

.legal-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1.01rem;
}

.legal-body h2 {
  font-size: 1.22rem;
  color: var(--ink);
  margin: 40px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  scroll-margin-top: 90px;
}

.legal-body h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 8px;
}

.legal-body h2 .legal-num {
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  margin-right: 8px;
}

.legal-body p {
  margin: 0 0 14px;
}

.legal-body strong {
  color: var(--ink);
}

.legal-body ul,
.legal-body ol {
  padding-left: 1.3em;
  margin: 0 0 14px;
}

.legal-body li {
  margin-bottom: 6px;
}

.legal-body a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-footnote {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

@media (max-width: 640px) {
  .legal-toc ol {
    columns: 1;
  }
}

/* Impression / export PDF navigateur (OPP onboarding : pages imprimables sans outillage
   supplémentaire) — masque le chrome du site, repasse en noir sur blanc, laisse respirer les
   titres de section. */
@media print {
  .nav,
  footer,
  .legal-lang-switch,
  .legal-toc {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .legal-page {
    padding: 0;
  }

  .legal-header,
  .legal-body,
  .legal-footnote {
    max-width: 100%;
  }

  .legal-body h2 {
    break-after: avoid;
    color: #000;
  }

  .legal-body,
  .legal-body p,
  .legal-body li {
    color: #111;
  }

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

/* ---------- Compliance policy pages (/security, /fraud-prevention, /anti-bribery,
   /aml-sanctions) ---------- reuses .legal-page/.legal-body, adds a small metadata block
   (effective date / version / owner) for a document-style header, proportionate to a small
   owner-operated business rather than a heavyweight corporate policy template. */
.policy-meta {
  max-width: 720px;
  margin: 0 auto 8px;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.policy-meta strong {
  color: var(--ink);
}

@media print {
  .policy-meta {
    max-width: 100%;
  }
}
