:root {
  --blue: #1268f3;
  --blue-dark: #08265f;
  --blue-soft: #eaf2ff;
  --violet: #7c3aed;
  --violet-dark: #5b21b6;
  --violet-soft: #f1ebff;
  --cyan: #22c7e8;
  --green: #14a76c;
  --gold: #f6b73c;
  --ink: #0b1330;
  --muted: #5f6f88;
  --line: #dfe6f4;
  --surface: #ffffff;
  --surface-soft: #f6f9ff;
  --shadow-sm: 0 10px 24px rgba(11, 27, 64, .10);
  --shadow: 0 24px 60px rgba(11, 27, 64, .14), 0 4px 14px rgba(11, 27, 64, .08);
  --shadow-lg: 0 40px 90px rgba(11, 27, 64, .18), 0 10px 26px rgba(76, 29, 149, .10);
  --glow-blue: 0 18px 40px rgba(18, 104, 243, .28);
  --glow-violet: 0 18px 40px rgba(124, 58, 237, .26);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --glass: rgba(255, 255, 255, .74);
  --glass-strong: rgba(255, 255, 255, .88);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: #f7f9ff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

body::before {
  top: -280px;
  left: -220px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(18, 104, 243, .20), transparent 70%);
}

body::after {
  top: 40vh;
  right: -260px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(124, 58, 237, .16), transparent 70%);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

/* ------------------------------
   Header
   ------------------------------ */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 16px auto 0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: var(--radius-pill);
  background: var(--glass);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-text {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.02em;
}

.brand-text span {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: .92rem;
  font-weight: 800;
}

.landing-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0 14px;
  color: #29406a;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.landing-nav a:hover,
.landing-nav a.is-active {
  color: var(--blue);
  background: var(--blue-soft);
}

.landing-nav .login-link {
  color: var(--blue-dark);
  border: 1px solid var(--line);
  background: #fff;
}

.landing-nav .trial-link {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: var(--glow-blue);
}

.landing-nav .trial-link:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--blue-dark));
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--blue-dark);
  place-items: center;
  gap: 4px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

/* ------------------------------
   Hero
   ------------------------------ */
.hero-section {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100svh - 116px);
  margin: 0 auto;
  padding: 64px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 36px;
  align-items: center;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: var(--radius-xl);
}

.hero-section::before {
  inset: 6px -24px 0 auto;
  width: min(60vw, 780px);
  background: linear-gradient(135deg, rgba(18, 104, 243, .12), rgba(124, 58, 237, .10) 55%, rgba(255, 255, 255, 0) 100%);
}

.hero-section::after {
  top: 18%;
  right: 6%;
  width: min(30vw, 360px);
  height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, .16), transparent 72%);
  filter: blur(10px);
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--glass-strong);
  border: 1px solid rgba(124, 58, 237, .16);
  color: var(--violet-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5.4vw, 5rem);
  line-height: 1.01;
  letter-spacing: -.01em;
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -.01em;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.hero-lead,
.section-heading p,
.contact-band p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.hero-copy .hero-lead {
  margin-top: 18px;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: var(--glow-blue);
}

.button-primary:hover {
  box-shadow: var(--glow-violet);
}

.button-secondary {
  color: var(--blue-dark);
  background: var(--glass-strong);
  border-color: rgba(255, 255, 255, .7);
  box-shadow: var(--shadow-sm);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  perspective: 1400px;
}

.laptop {
  position: absolute;
  top: 48px;
  right: 52px;
  width: min(610px, 88vw);
  min-height: 360px;
  border: 10px solid #0a1733;
  border-bottom-width: 20px;
  border-radius: var(--radius-lg);
  background: #f8fbff;
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-10deg) rotateX(5deg);
  transform-style: preserve-3d;
  overflow: hidden;
  transition: transform .4s ease;
}

.laptop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .28), transparent 40%);
  pointer-events: none;
}

.hero-visual:hover .laptop {
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
}

.laptop-top {
  height: 48px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  background: linear-gradient(135deg, #0b1a3c, #123f9a 55%, #4c1d95);
  font-weight: 900;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 118px 1fr;
  min-height: 294px;
}

.dashboard-layout aside {
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 10px;
  color: #b8c9ee;
  background: #0d1c3d;
  font-size: .78rem;
  font-weight: 800;
}

.dashboard-layout aside span {
  border-radius: 10px;
  padding: 8px 9px;
}

.dashboard-layout aside .dash-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(18, 104, 243, .9), rgba(124, 58, 237, .85));
}

.dashboard-layout section {
  padding: 16px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-row div,
.chart-area,
.dashboard-bottom > div,
.floating-card,
.phone-preview,
.feature-strip article,
.feature-card,
.advantage-card,
.module-panel,
.price-card,
.demo-form,
.contact-grid article {
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius-lg);
  background: var(--glass);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
}

.metric-row div {
  padding: 12px;
}

.metric-row small,
.module-panel span,
.price-card p {
  display: block;
  color: var(--muted);
  font-weight: 900;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.metric-row strong {
  display: block;
  margin-top: 6px;
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.chart-area {
  height: 108px;
  margin-top: 14px;
  padding: 16px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.chart-area span {
  flex: 1;
  min-width: 12px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--violet), var(--blue) 60%, var(--cyan));
}

.chart-area span:nth-child(1) { height: 45%; }
.chart-area span:nth-child(2) { height: 66%; }
.chart-area span:nth-child(3) { height: 53%; }
.chart-area span:nth-child(4) { height: 82%; }
.chart-area span:nth-child(5) { height: 70%; }
.chart-area span:nth-child(6) { height: 92%; }

.dashboard-bottom {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  margin-top: 14px;
}

.dashboard-bottom > div {
  min-height: 94px;
}

.donut {
  background:
    radial-gradient(circle at center, #fff 0 34%, transparent 35%),
    conic-gradient(var(--blue) 0 42%, var(--violet) 42% 70%, var(--gold) 70% 100%);
}

.mini-list {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.mini-list span {
  min-height: 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: transparent;
}

.mini-list span:nth-child(2) { background: var(--violet-soft); }
.mini-list span:nth-child(3) { background: #fff2cf; }

.floating-card {
  position: absolute;
  z-index: 3;
  width: 174px;
  padding: 14px 14px 14px 16px;
  border-left: 3px solid var(--blue);
  animation: floatSoft 6s ease-in-out infinite;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: .82rem;
}

.floating-card span {
  margin-top: 6px;
  color: var(--blue);
  font-weight: 900;
}

.payment-card { top: 66px; left: 0; transform: rotate(-3deg); }
.signup-card { top: 194px; left: 22px; border-left-color: var(--gold); transform: rotate(2deg); animation-delay: .5s; }
.signup-card span { color: #a3690a; }
.bulletin-card { bottom: 136px; left: 4px; border-left-color: var(--violet); transform: rotate(-2deg); animation-delay: 1s; }
.bulletin-card span { color: var(--violet-dark); }
.meeting-card { top: 148px; right: 0; border-left-color: var(--green); transform: rotate(3deg); animation-delay: 1.5s; }
.meeting-card span { color: var(--green); }

.phone-preview {
  position: absolute;
  right: 4px;
  bottom: 68px;
  z-index: 4;
  width: 184px;
  min-height: 306px;
  padding: 30px 13px 16px;
  border: 8px solid #0a1733;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 58px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0a1733;
}

.phone-preview strong {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-dark);
}

.parent-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface-soft);
  font-size: .76rem;
}

.parent-line b {
  color: var(--violet-dark);
}

.parent-ok {
  margin-top: 14px;
  padding: 10px;
  border-radius: 12px;
  color: #0f6b43;
  background: #dcfce7;
  font-weight: 900;
  font-size: .76rem;
  text-align: center;
}

.school-scene {
  position: absolute;
  left: 172px;
  bottom: 30px;
  z-index: 4;
  width: 144px;
  height: 118px;
  filter: drop-shadow(0 20px 22px rgba(11, 27, 64, .18));
}

.school-roof {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 66px solid transparent;
  border-right: 66px solid transparent;
  border-bottom: 44px solid var(--violet);
}

.school-body {
  height: 74px;
  margin-top: -1px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #edf4ff);
  font-weight: 900;
  color: var(--blue-dark);
}

/* ------------------------------
   Bandeau avantages rapides
   ------------------------------ */
.feature-strip,
.section-band,
.landing-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 0 58px;
}

.feature-strip article {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-strip article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.strip-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-weight: 900;
  font-size: .72rem;
  box-shadow: var(--glow-blue);
}

.feature-strip article:nth-child(2) .strip-icon {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  box-shadow: var(--glow-violet);
}

.feature-strip article:nth-child(3) .strip-icon {
  background: linear-gradient(135deg, var(--gold), var(--blue));
}

.feature-strip strong,
.feature-strip p {
  display: block;
  margin: 0;
}

.feature-strip p {
  color: var(--muted);
  font-size: .88rem;
}

.section-band {
  padding: 76px 0;
}

.soft-band {
  position: relative;
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
  overflow: hidden;
}

.soft-band::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 900px;
  height: 300px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(124, 58, 237, .08), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.soft-band > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

/* ------------------------------
   Fonctionnalites
   ------------------------------ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 194px;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 12px;
  color: inherit;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover,
.feature-card.is-active {
  border-color: rgba(124, 58, 237, .4);
  box-shadow: var(--shadow);
  transform: translateY(-4px) rotateX(2deg);
}

.module-list button:hover,
.module-list button.is-active {
  border-color: rgba(18, 104, 243, .55);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: .84rem;
  font-weight: 900;
}

.feature-card:nth-child(2) .card-icon { color: var(--violet-dark); background: var(--violet-soft); }
.feature-card:nth-child(3) .card-icon { color: #92400e; background: #fff2cf; }
.feature-card:nth-child(4) .card-icon { color: var(--green); background: #dcfce7; }

.feature-card small {
  color: var(--muted);
  font-size: .92rem;
}

.detail-panel {
  margin-top: 16px;
  padding: 20px;
  border-left: 4px solid var(--violet);
  border-radius: var(--radius);
  color: #2b2153;
  background: var(--violet-soft);
  font-weight: 750;
}

/* ------------------------------
   Avantages / Tarifs
   ------------------------------ */
.advantage-grid,
.pricing-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.advantage-card,
.price-card {
  padding: 24px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.advantage-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.advantage-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 900;
}

.advantage-card:nth-child(2) span { color: var(--violet-dark); background: var(--violet-soft); }
.advantage-card:nth-child(3) span { color: var(--green); background: #dcfce7; }

.advantage-card h3 {
  margin-top: 18px;
}

.advantage-card p,
.price-card li,
.module-panel p {
  color: var(--muted);
}

.module-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 18px;
  align-items: start;
}

.module-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.module-list button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0 16px;
  color: var(--blue-dark);
  background: #fff;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.module-list button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  border-color: transparent;
}

.module-panel {
  position: sticky;
  top: 104px;
  padding: 26px;
}

.module-panel h3 {
  margin-top: 8px;
  font-size: 1.5rem;
}

.price-card {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
}

.price-card.highlighted {
  border-color: rgba(124, 58, 237, .45);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(241, 235, 255, .8));
}

.price-card.highlighted::before {
  content: "Le plus choisi";
  position: absolute;
  top: -14px;
  left: 24px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .03em;
  box-shadow: var(--glow-violet);
}

.price-card ul {
  margin: 0;
  padding-left: 20px;
}

.price-card li + li {
  margin-top: 8px;
}

/* ------------------------------
   Demo / Contact
   ------------------------------ */
.demo-band {
  padding-top: 86px;
}

.demo-form {
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-dark);
  font-weight: 900;
}

.demo-form span {
  font-size: .9rem;
}

input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 15px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

textarea {
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, .14);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-message {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-message.is-error {
  color: #b42318;
}

.form-message.is-success {
  color: #0f6b43;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 54px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-grid article {
  padding: 18px;
}

.contact-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.contact-grid .button {
  grid-column: 1 / -1;
}

.contact-note {
  grid-column: 2;
  margin: -12px 0 0;
  color: #8a5d0a;
  font-weight: 800;
}

/* ------------------------------
   Footer
   ------------------------------ */
.landing-footer {
  padding: 28px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.landing-footer span:first-child {
  color: var(--blue-dark);
  font-weight: 900;
}

.landing-footer a {
  color: var(--violet-dark);
  font-weight: 900;
}

.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: var(--radius-pill);
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0) rotate(var(--tilt, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--tilt, 0deg)); }
}

.payment-card { --tilt: -3deg; }
.signup-card { --tilt: 2deg; }
.bulletin-card { --tilt: -2deg; }
.meeting-card { --tilt: 3deg; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ------------------------------
   Responsive
   ------------------------------ */
@media (max-width: 1060px) {
  .landing-header {
    width: min(100% - 24px, 760px);
    align-items: flex-start;
    border-radius: var(--radius-lg);
  }

  .menu-toggle {
    display: grid;
  }

  .landing-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .landing-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-nav a {
    justify-content: flex-start;
    border-radius: var(--radius);
  }

  .landing-nav .trial-link {
    justify-content: center;
    grid-column: 1 / -1;
  }

  .hero-section {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .hero-section::before {
    inset: 42% -24px 0 -24px;
    width: auto;
  }

  .hero-section::after {
    display: none;
  }

  .hero-visual {
    min-height: 620px;
  }

  .laptop {
    top: 58px;
    left: 50%;
    right: auto;
    width: min(640px, 94vw);
    transform: translateX(-50%) perspective(1200px) rotateY(0) rotateX(2deg);
  }

  .hero-visual:hover .laptop {
    transform: translateX(-50%) perspective(1200px) rotateY(0) rotateX(2deg);
  }

  .payment-card { left: 0; }
  .signup-card { left: 4%; }
  .bulletin-card { bottom: 126px; left: 8%; }
  .meeting-card { right: 0; }
  .phone-preview { right: 4%; bottom: 56px; }
  .school-scene { left: 12%; bottom: 20px; }

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

  .feature-strip,
  .module-layout,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .module-panel {
    position: static;
  }

  .contact-note {
    grid-column: 1;
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .landing-header,
  .hero-section,
  .feature-strip,
  .section-band,
  .landing-footer {
    width: min(100% - 24px, 100%);
  }

  .brand-text {
    font-size: 1.18rem;
  }

  .landing-nav.is-open,
  .feature-grid,
  .advantage-grid,
  .pricing-grid,
  .demo-form,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 34px;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
  }

  .laptop {
    top: 78px;
    min-height: 310px;
    border-width: 7px 7px 14px;
  }

  .laptop-top {
    height: 42px;
    font-size: .8rem;
  }

  .dashboard-layout {
    grid-template-columns: 84px 1fr;
    min-height: 246px;
  }

  .dashboard-layout aside {
    padding: 10px 8px;
    font-size: .64rem;
  }

  .dashboard-layout section {
    padding: 10px;
  }

  .metric-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .metric-row div {
    padding: 8px;
  }

  .metric-row strong {
    font-size: .86rem;
  }

  .chart-area {
    height: 74px;
    margin-top: 8px;
    gap: 7px;
    padding: 10px;
  }

  .dashboard-bottom {
    grid-template-columns: 78px 1fr;
    gap: 8px;
    margin-top: 8px;
  }

  .dashboard-bottom > div {
    min-height: 62px;
  }

  .floating-card {
    width: 142px;
    padding: 10px 10px 10px 12px;
    font-size: .76rem;
  }

  .payment-card { top: 12px; left: 2%; }
  .signup-card { top: 112px; left: 0; }
  .bulletin-card { display: none; }
  .meeting-card { top: 22px; right: 1%; }

  .phone-preview {
    width: 140px;
    min-height: 230px;
    right: 1%;
    bottom: 18px;
    border-width: 6px;
    font-size: .78rem;
  }

  .parent-line {
    display: grid;
    gap: 4px;
  }

  .school-scene {
    width: 112px;
    height: 92px;
    left: 2%;
    bottom: 20px;
  }

  .school-roof {
    border-left-width: 52px;
    border-right-width: 52px;
    border-bottom-width: 34px;
  }

  .school-body {
    height: 58px;
  }

  .feature-strip {
    padding-bottom: 34px;
  }

  .section-band {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .soft-band {
    width: 100%;
  }

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

  .landing-footer {
    display: grid;
    text-align: center;
  }
}

/* ===== SCOLAGEST V539 — HERO PUBLIC CHARTE ACTUELLE ===== */
.landing-header,
.hero-section {
  --v539-ink: #1D3461;
  --v539-ink-dark: #14264A;
  --v539-ink-soft: #4A5670;
  --v539-gold: #A6752E;
  --v539-gold-dark: #8A5F22;
  --v539-gold-soft: #F1E4C9;
  --v539-petrol: #2F6B6B;
  --v539-green: #2E6B4F;
  --v539-ivory: #FFFDF7;
  --v539-bg: #F6F2E7;
  --v539-line: #E4DEC9;
  --v539-shadow: 0 18px 46px rgba(29, 52, 97, .12);
}

.landing-header {
  border-color: rgba(228, 222, 201, .94);
  background: rgba(255, 253, 247, .94);
  box-shadow: 0 10px 28px rgba(29, 52, 97, .10);
}

.landing-header .brand-mark {
  box-shadow: 0 8px 20px rgba(29, 52, 97, .14);
}

.landing-header .brand-text,
.hero-section h1 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
}

.landing-header .brand-text {
  color: var(--v539-ink);
}

.landing-header .brand-text span {
  background: none;
  color: var(--v539-gold);
  -webkit-text-fill-color: currentColor;
}

.landing-header .landing-nav a {
  color: var(--v539-ink-soft);
}

.landing-header .landing-nav a:hover,
.landing-header .landing-nav a.is-active {
  color: var(--v539-gold-dark);
  background: var(--v539-gold-soft);
}

.landing-header .landing-nav .login-link {
  color: var(--v539-ink-dark);
  border-color: var(--v539-line);
  background: var(--v539-ivory);
}

.landing-header .landing-nav .trial-link {
  color: #fff;
  background: var(--v539-gold);
  box-shadow: 0 12px 28px rgba(166, 117, 46, .24);
}

.landing-header .landing-nav .trial-link:hover {
  color: #fff;
  background: var(--v539-gold-dark);
  box-shadow: 0 14px 30px rgba(138, 95, 34, .22);
}

.landing-header .menu-toggle {
  border-color: var(--v539-line);
  background: var(--v539-ivory);
  color: var(--v539-ink-dark);
}

.hero-section {
  isolation: isolate;
  color: var(--v539-ink);
}

.hero-section::before {
  background: linear-gradient(135deg, rgba(241, 228, 201, .76), rgba(220, 227, 240, .64) 56%, rgba(255, 253, 247, 0) 100%);
}

.hero-section::after {
  background: radial-gradient(circle, rgba(47, 107, 107, .14), transparent 72%);
}

.hero-section .eyebrow {
  border-color: rgba(166, 117, 46, .22);
  background: rgba(241, 228, 201, .78);
  color: var(--v539-gold-dark);
  box-shadow: 0 8px 20px rgba(166, 117, 46, .10);
}

.hero-section h1 {
  color: var(--v539-ink);
  letter-spacing: -.018em;
}

.hero-section .hero-lead {
  color: var(--v539-ink-soft);
}

.hero-section .button-primary {
  color: #fff;
  background: var(--v539-gold);
  box-shadow: 0 16px 34px rgba(166, 117, 46, .24);
}

.hero-section .button-primary:hover {
  background: var(--v539-gold-dark);
  box-shadow: 0 18px 38px rgba(138, 95, 34, .22);
}

.hero-section .button-secondary {
  color: var(--v539-ink-dark);
  border-color: var(--v539-line);
  background: rgba(255, 253, 247, .92);
  box-shadow: 0 10px 24px rgba(29, 52, 97, .09);
}

.hero-section .laptop {
  border-color: var(--v539-ink-dark);
  background: var(--v539-ivory);
  box-shadow: 0 34px 70px rgba(29, 52, 97, .18);
}

.hero-section .laptop-top {
  color: #F6F2E7;
  background: var(--v539-ink);
}

.hero-section .dashboard-layout aside {
  color: var(--v539-ink-soft);
  background: var(--v539-bg);
}

.hero-section .dashboard-layout aside .dash-active {
  color: var(--v539-gold-dark);
  background: var(--v539-gold-soft);
}

.hero-section .metric-row div,
.hero-section .chart-area,
.hero-section .dashboard-bottom > div,
.hero-section .floating-card,
.hero-section .phone-preview {
  border-color: rgba(228, 222, 201, .94);
  background: rgba(255, 253, 247, .94);
  box-shadow: var(--v539-shadow);
}

.hero-section .metric-row small {
  color: var(--v539-ink-soft);
}

.hero-section .metric-row strong,
.hero-section .phone-preview strong {
  color: var(--v539-ink-dark);
}

.hero-section .chart-area span {
  background: var(--v539-gold);
}

.hero-section .chart-area span:nth-child(2),
.hero-section .chart-area span:nth-child(5) {
  background: var(--v539-petrol);
}

.hero-section .chart-area span:nth-child(3),
.hero-section .chart-area span:nth-child(6) {
  background: var(--v539-green);
}

.hero-section .chart-area span:nth-child(4) {
  background: var(--v539-ink);
}

.hero-section .donut {
  background:
    radial-gradient(circle at center, var(--v539-ivory) 0 34%, transparent 35%),
    conic-gradient(var(--v539-ink) 0 42%, var(--v539-gold) 42% 70%, var(--v539-petrol) 70% 100%);
}

.hero-section .mini-list span {
  background: #DCE3F0;
}

.hero-section .mini-list span:nth-child(2) {
  background: var(--v539-gold-soft);
}

.hero-section .mini-list span:nth-child(3) {
  background: #DEEBEA;
}

.hero-section .floating-card {
  border-left-color: var(--v539-ink);
}

.hero-section .floating-card span {
  color: var(--v539-ink);
}

.hero-section .payment-card {
  border-left-color: var(--v539-green);
}

.hero-section .payment-card span {
  color: var(--v539-green);
}

.hero-section .signup-card {
  border-left-color: var(--v539-gold);
}

.hero-section .signup-card span {
  color: var(--v539-gold-dark);
}

.hero-section .bulletin-card {
  border-left-color: var(--v539-ink);
}

.hero-section .bulletin-card span {
  color: var(--v539-ink);
}

.hero-section .meeting-card {
  border-left-color: var(--v539-petrol);
}

.hero-section .meeting-card span {
  color: var(--v539-petrol);
}

.hero-section .phone-preview {
  border-color: var(--v539-ink-dark);
}

.hero-section .phone-notch {
  background: var(--v539-ink-dark);
}

.hero-section .parent-line {
  background: var(--v539-bg);
}

.hero-section .parent-line b {
  color: var(--v539-gold-dark);
}

.hero-section .parent-ok {
  color: var(--v539-green);
  background: #E4EFE8;
}

.hero-section .school-roof {
  border-bottom-color: var(--v539-gold);
}

.hero-section .school-body {
  border-color: rgba(228, 222, 201, .94);
  background: linear-gradient(180deg, var(--v539-ivory), var(--v539-bg));
  color: var(--v539-ink-dark);
}

@media (max-width: 1060px) {
  .landing-header .landing-nav {
    border-color: var(--v539-line);
    background: var(--v539-ivory);
  }
}

@media (max-width: 720px) {
  .hero-section h1 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
    line-height: 1.04;
  }

  .hero-section .hero-copy {
    text-align: center;
  }

  .hero-section .eyebrow {
    justify-content: center;
  }
}
/* ===== FIN SCOLAGEST V539 ===== */

/* ===== SCOLAGEST V647 — LANDING SAAS PROD ===== */
:root {
  --v647-ink: #1D3461;
  --v647-ink-dark: #14264A;
  --v647-ink-soft: #536078;
  --v647-gold: #A6752E;
  --v647-gold-dark: #81591F;
  --v647-gold-soft: #F1E4C9;
  --v647-petrol: #2F6B6B;
  --v647-green: #2E6B4F;
  --v647-ivory: #FFFDF7;
  --v647-bg: #F7F4EC;
  --v647-surface: #FCFAF5;
  --v647-line: #E3DCCB;
  --v647-shadow: 0 18px 46px rgba(29, 52, 97, .10);
  --v647-shadow-lg: 0 30px 76px rgba(29, 52, 97, .14);
}

body {
  color: var(--v647-ink-dark);
  background: var(--v647-surface);
}

body::before {
  background: radial-gradient(circle, rgba(166, 117, 46, .12), transparent 70%);
}

body::after {
  background: radial-gradient(circle, rgba(47, 107, 107, .10), transparent 70%);
}

h1,
h2,
.landing-header .brand-text,
.footer-brand strong {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
}

h2,
h3 {
  color: var(--v647-ink-dark);
}

.hero-lead,
.section-heading p,
.advantage-card p,
.price-card li,
.module-panel p,
.contact-band p {
  color: var(--v647-ink-soft);
}

.landing-header {
  border-color: rgba(227, 220, 203, .94);
  background: rgba(255, 253, 247, .96);
  box-shadow: 0 10px 30px rgba(29, 52, 97, .09);
}

.landing-header .landing-nav a {
  color: var(--v647-ink-soft);
}

.landing-header .landing-nav a:hover,
.landing-header .landing-nav a.is-active {
  color: var(--v647-gold-dark);
  background: var(--v647-gold-soft);
}

.landing-header .landing-nav .login-link {
  color: var(--v647-ink-dark);
  border-color: var(--v647-line);
  background: var(--v647-ivory);
}

.landing-header .landing-nav .trial-link {
  color: #fff;
  background: var(--v647-gold);
  box-shadow: 0 12px 28px rgba(166, 117, 46, .22);
}

.landing-header .landing-nav .trial-link:hover {
  color: #fff;
  background: var(--v647-gold-dark);
}

.hero-section .hero-copy {
  max-width: 650px;
}

.hero-section h1 {
  max-width: 650px;
  font-size: clamp(2.45rem, 5.1vw, 4.75rem);
}

.hero-section .hero-lead {
  max-width: 640px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--v647-line);
  border-radius: var(--radius-pill);
  color: var(--v647-ink-soft);
  background: rgba(255, 253, 247, .84);
  font-size: .78rem;
  font-weight: 850;
  box-shadow: 0 6px 16px rgba(29, 52, 97, .06);
}

.hero-trust span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--v647-green);
}

.button-primary {
  color: #fff;
  background: var(--v647-ink);
  box-shadow: 0 14px 30px rgba(29, 52, 97, .20);
}

.button-primary:hover {
  background: var(--v647-ink-dark);
  box-shadow: 0 16px 34px rgba(20, 38, 74, .22);
}

.button-secondary,
.button-contact-secondary {
  color: var(--v647-ink-dark);
  border: 1px solid var(--v647-line);
  background: var(--v647-ivory);
  box-shadow: 0 8px 20px rgba(29, 52, 97, .07);
}

.button-contact-secondary {
  min-height: 48px;
  border-radius: var(--radius-pill);
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.button:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.feature-strip article,
.feature-card,
.advantage-card,
.module-panel,
.price-card,
.demo-form,
.contact-grid article {
  border-color: var(--v647-line);
  background: rgba(255, 253, 247, .94);
  box-shadow: var(--v647-shadow);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.feature-strip article {
  min-height: 112px;
}

.strip-icon {
  color: var(--v647-ink-dark);
  background: var(--v647-gold-soft);
  box-shadow: none;
}

.feature-strip article:nth-child(2) .strip-icon {
  color: #fff;
  background: var(--v647-petrol);
  box-shadow: none;
}

.feature-strip article:nth-child(3) .strip-icon {
  color: #fff;
  background: var(--v647-ink);
}

.feature-strip p {
  color: var(--v647-ink-soft);
}

.section-band {
  scroll-margin-top: 104px;
}

.soft-band {
  background: linear-gradient(180deg, var(--v647-bg) 0%, var(--v647-ivory) 100%);
}

.soft-band::before {
  background: radial-gradient(ellipse, rgba(166, 117, 46, .09), transparent 70%);
}

.section-heading .eyebrow,
.contact-band .eyebrow {
  border-color: rgba(166, 117, 46, .20);
  color: var(--v647-gold-dark);
  background: var(--v647-gold-soft);
  box-shadow: none;
}

.feature-card:hover,
.feature-card.is-active {
  border-color: rgba(166, 117, 46, .50);
  box-shadow: var(--v647-shadow-lg);
}

.card-icon,
.feature-card:nth-child(2) .card-icon,
.feature-card:nth-child(3) .card-icon,
.feature-card:nth-child(4) .card-icon {
  color: var(--v647-ink-dark);
  background: var(--v647-gold-soft);
}

.feature-card:nth-child(2) .card-icon {
  color: #fff;
  background: var(--v647-petrol);
}

.feature-card:nth-child(3) .card-icon {
  color: #fff;
  background: var(--v647-ink);
}

.feature-card:nth-child(4) .card-icon {
  color: var(--v647-green);
  background: #E4EFE8;
}

.feature-card small {
  color: var(--v647-ink-soft);
}

.detail-panel {
  border-left-color: var(--v647-gold);
  color: var(--v647-ink-dark);
  background: var(--v647-gold-soft);
}

.advantage-heading {
  width: min(1180px, 100%);
  margin: 0 auto 28px;
}

.advantage-card span,
.advantage-card:nth-child(2) span,
.advantage-card:nth-child(3) span {
  color: var(--v647-gold-dark);
  background: var(--v647-gold-soft);
}

.advantage-card:nth-child(2) span {
  color: #fff;
  background: var(--v647-petrol);
}

.advantage-card:nth-child(3) span {
  color: #fff;
  background: var(--v647-ink);
}

.module-list button {
  border-color: var(--v647-line);
  color: var(--v647-ink-dark);
  background: var(--v647-ivory);
}

.module-list button:hover {
  border-color: rgba(166, 117, 46, .45);
}

.module-list button.is-active {
  color: #fff;
  border-color: var(--v647-ink);
  background: var(--v647-ink);
}

.module-panel > span,
.price-card > p,
.offer-kicker {
  color: var(--v647-gold-dark);
}

.price-card {
  min-height: 410px;
}

.price-card.highlighted {
  border-color: rgba(166, 117, 46, .52);
  background: linear-gradient(180deg, var(--v647-ivory), #F8F0DF);
  box-shadow: var(--v647-shadow-lg);
}

.price-card.highlighted::before {
  content: "Le plus demandé";
  color: #fff;
  background: var(--v647-gold);
  box-shadow: 0 10px 22px rgba(166, 117, 46, .20);
}

.price-card .button {
  margin-top: auto;
}

.offer-note {
  width: min(880px, 100%);
  margin: 20px auto 0;
  color: var(--v647-ink-soft);
  text-align: center;
  font-size: .9rem;
}

.demo-band .section-heading {
  max-width: 820px;
}

.demo-form {
  position: relative;
  border-color: var(--v647-line);
  background: var(--v647-ivory);
  box-shadow: var(--v647-shadow-lg);
}

.demo-form label {
  color: var(--v647-ink-dark);
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  border-color: var(--v647-line);
  color: var(--v647-ink-dark);
  background: #fff;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: var(--v647-gold);
  box-shadow: 0 0 0 4px rgba(166, 117, 46, .13);
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.consent-line {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--v647-ink-soft) !important;
  font-size: .88rem;
  font-weight: 700 !important;
}

.consent-line input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--v647-ink);
}

.consent-line a {
  color: var(--v647-gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-message.is-info {
  color: var(--v647-petrol);
}

.contact-band {
  margin-top: 38px;
  margin-bottom: 44px;
  padding: 54px 48px;
  border-radius: var(--radius-xl);
  color: var(--v647-ivory);
  background: linear-gradient(135deg, var(--v647-ink-dark), var(--v647-ink));
  box-shadow: var(--v647-shadow-lg);
}

.contact-band h2,
.contact-band p {
  color: var(--v647-ivory);
}

.contact-band .eyebrow {
  color: var(--v647-gold-soft);
  border-color: rgba(241, 228, 201, .18);
  background: rgba(166, 117, 46, .18);
}

.contact-grid article {
  border-color: rgba(255, 255, 255, .13);
  color: var(--v647-ivory);
  background: rgba(255, 255, 255, .07);
  box-shadow: none;
}

.contact-grid article strong {
  color: var(--v647-gold-soft);
}

.contact-grid article span {
  color: rgba(255, 253, 247, .78);
}

.contact-grid article:nth-of-type(3) {
  grid-column: 1 / -1;
}

.contact-grid .button,
.contact-grid .button-contact-secondary {
  grid-column: auto;
}

.contact-band .button-primary {
  color: var(--v647-ink-dark);
  background: var(--v647-gold-soft);
  box-shadow: none;
}

.contact-band .button-contact-secondary {
  color: var(--v647-ivory);
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .05);
  box-shadow: none;
}

.landing-footer {
  width: 100%;
  max-width: none;
  padding: 30px max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255, 253, 247, .72);
  border-top: 0;
  background: var(--v647-ink-dark);
}

.footer-brand {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  color: var(--v647-gold-soft);
  font-size: 1.18rem;
}

.footer-brand span {
  color: rgba(255, 253, 247, .68);
  font-size: .84rem;
}

.landing-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.landing-footer a {
  color: var(--v647-ivory);
  font-size: .86rem;
  font-weight: 800;
}

.back-top {
  background: var(--v647-gold-dark);
  box-shadow: 0 14px 30px rgba(20, 38, 74, .18);
}

:focus-visible {
  outline: 3px solid rgba(166, 117, 46, .48);
  outline-offset: 3px;
}

@media (max-width: 1060px) {
  .landing-header .landing-nav {
    border-color: var(--v647-line);
    background: var(--v647-ivory);
  }

  .contact-band {
    padding: 44px 30px;
  }
}

@media (max-width: 720px) {
  .hero-trust {
    justify-content: center;
  }

  .hero-trust span {
    font-size: .74rem;
  }

  .price-card {
    min-height: 0;
  }

  .contact-band {
    width: min(100% - 24px, 100%);
    padding: 38px 22px;
    border-radius: var(--radius-lg);
  }

  .contact-grid .button,
  .contact-grid .button-contact-secondary {
    width: 100%;
  }

  .landing-footer {
    width: 100%;
    padding: 28px 20px;
    gap: 18px;
  }

  .landing-footer nav {
    justify-content: center;
  }
}
/* ===== FIN SCOLAGEST V647 ===== */
