:root {
  --green: #2f8f63;
  --green-strong: #1f7650;
  --green-deep: #173b30;
  --green-soft: #e8f3ed;
  --sage: #afcbbb;
  --orange: #d98b36;
  --ink: #173128;
  --ink-soft: #2d4a40;
  --muted: #667a72;
  --muted-strong: #4f655c;
  --bg: #faf9f5;
  --surface: #ffffff;
  --surface-2: #f1f5f1;
  --surface-warm: #f5f1e8;
  --line: #dce5df;
  --line-green: #b9d6c6;
  --radius: 24px;
  --maxw: 1180px;
  --shadow: 0 28px 70px rgba(38, 65, 53, 0.13);
  --shadow-soft: 0 14px 38px rgba(38, 65, 53, 0.1);
  --accent: var(--green);
  --vert: var(--green);
  --gris: var(--muted);
  color-scheme: light;
  font-family: Inter, Avenir, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Pause temporaire des inscriptions */
.registration-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper, #f8f8f4);
  border: 1px solid rgba(48, 174, 106, .28);
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
}

.registration-dialog::backdrop {
  background: rgba(5, 15, 13, .76);
  backdrop-filter: blur(6px);
}

.registration-dialog-content {
  padding: clamp(30px, 6vw, 50px);
  text-align: center;
}

.registration-dialog-mark,
.registration-paused-icon {
  display: inline-grid;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  place-items: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  background: var(--accent);
  border: 7px solid var(--ink);
  border-radius: 20px;
}

.registration-dialog h2,
.registration-paused h1 {
  margin: 8px 0 18px;
}

.registration-dialog p,
.registration-paused p {
  max-width: 56ch;
  margin-right: auto;
  margin-left: auto;
}

.registration-dialog-actions,
.registration-paused-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.registration-dialog-actions .btn {
  min-width: 150px;
}

.registration-paused {
  width: min(760px, 100%);
  margin: 70px auto;
  padding: clamp(38px, 7vw, 72px);
  color: var(--ink);
  text-align: center;
  background: var(--paper, #f8f8f4);
  border: 1px solid rgba(48, 174, 106, .25);
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
}

.registration-paused-lead {
  font-size: 1.15rem;
}

@media (max-width: 620px) {
  .registration-dialog-actions,
  .registration-paused-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .registration-paused {
    margin: 30px auto;
    border-radius: 22px;
  }
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(47, 143, 99, 0.07), transparent 27rem),
    var(--bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.wrap {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  padding: 0 30px;
}

a,
button,
input,
select,
textarea {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(217, 139, 54, 0.45);
  outline-offset: 3px;
}

/* Boutons */
.btn {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid var(--green-strong);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-strong));
  color: #fff;
  box-shadow: 0 12px 28px rgba(31, 118, 80, 0.2);
  font-size: 0.95rem;
  font-weight: 780;
  line-height: 1;
  cursor: pointer;
}

.btn:hover {
  background: linear-gradient(135deg, #3a9e72, var(--green));
  box-shadow: 0 16px 34px rgba(31, 118, 80, 0.27);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--line-green);
  background: rgba(255, 255, 255, 0.75);
  color: var(--green-strong);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--green-deep);
}

/* Navigation */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 59, 48, 0.08);
  background: rgba(255, 255, 253, 0.9);
  box-shadow: 0 8px 30px rgba(35, 65, 52, 0.06);
  backdrop-filter: blur(16px);
}

.nav-in {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  flex: none;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand-ico {
  width: 48px;
  height: 48px;
  flex: none;
  border: 1px solid rgba(23, 59, 48, 0.08);
  border-radius: 14px;
  box-shadow: 0 9px 24px rgba(28, 64, 49, 0.14);
}

.brand-txt {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 880;
  letter-spacing: 0.02em;
}

.brand-txt span {
  color: var(--green);
}

.brand-txt small {
  display: block;
  margin-top: 5px;
  color: #71857b;
  font-size: 0.5rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

nav.links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  margin-left: auto;
}

nav.links a {
  padding: 9px 11px;
  border-radius: 999px;
  color: #53675e;
  font-size: 0.9rem;
  font-weight: 680;
  white-space: nowrap;
}

nav.links a:hover {
  background: var(--green-soft);
  color: var(--green-strong);
}

nav.links a.active {
  background: #e4f1e9;
  color: var(--green-strong);
}

.nav-cta {
  margin-left: 4px;
  white-space: nowrap;
}

.mobile-contact-link {
  display: none !important;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Accueil */
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 82px;
  border-bottom: 1px solid rgba(47, 143, 99, 0.1);
  background:
    radial-gradient(circle at 6% 10%, rgba(47, 143, 99, 0.1), transparent 23rem),
    linear-gradient(110deg, #fbfaf6 0%, #fbfaf6 56%, #eef4ef 56%, #eef4ef 100%);
}

.hero::before {
  position: absolute;
  top: 28px;
  left: -100px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(47, 143, 99, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: 58px;
}

.hero-text {
  padding: 20px 0;
}

.hero .eyebrow,
.page-head .eyebrow,
.story .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-strong);
  font-size: 0.77rem;
  font-weight: 840;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow::before,
.page-head .eyebrow::before,
.story .eyebrow::before {
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.hero h1 {
  max-width: 13.5ch;
  color: var(--ink);
  font-size: clamp(3.25rem, 5.5vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -0.064em;
  line-height: 0.98;
}

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

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 7px;
  border-radius: 999px;
  background: rgba(217, 139, 54, 0.32);
  content: "";
  transform: rotate(-1deg);
}

.hero .lead {
  max-width: 58ch;
  margin: 27px 0 30px;
  color: var(--muted-strong);
  font-size: 1.06rem;
  line-height: 1.78;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .mini {
  max-width: 60ch;
  margin-top: 21px;
  color: #778a81;
  font-size: 0.88rem;
}

.hero-media {
  position: relative;
  margin-right: -54px;
  padding: 14px;
  border: 1px solid rgba(23, 59, 48, 0.12);
  border-radius: 30px 0 0 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 32px 80px rgba(35, 63, 52, 0.18);
}

.hero-media::before {
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: -1;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: var(--green-soft);
  content: "";
  transform: rotate(-8deg);
}

.hero-media::after {
  position: absolute;
  right: 26px;
  bottom: -22px;
  z-index: 2;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(23, 59, 48, 0.92);
  color: #fff;
  box-shadow: 0 12px 30px rgba(23, 59, 48, 0.25);
  content: "Né en Auvergne  ·  Pensé pour vos voyageurs";
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.hero-media img {
  width: 100%;
  min-height: 490px;
  border-radius: 20px 0 0 20px;
  object-fit: cover;
  object-position: center;
}

/* En-têtes intérieurs */
.page-head {
  position: relative;
  overflow: hidden;
  padding: 78px 0 70px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 18%, rgba(47, 143, 99, 0.13), transparent 22rem),
    linear-gradient(135deg, #f7f3e9, #edf5ef 72%);
}

.page-head::after {
  position: absolute;
  right: -110px;
  bottom: -190px;
  width: 350px;
  height: 350px;
  border: 38px solid rgba(47, 143, 99, 0.055);
  border-radius: 50%;
  content: "";
}

.page-head h1 {
  max-width: 18ch;
  color: var(--ink);
  font-size: clamp(2.8rem, 5vw, 4.45rem);
  font-weight: 890;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.page-head p:not(.eyebrow) {
  max-width: 64ch;
  margin-top: 18px;
  color: var(--muted-strong);
  font-size: 1.07rem;
  line-height: 1.78;
}

.page-head-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr);
  align-items: center;
  gap: 68px;
}

.page-brand-card {
  padding: 12px;
  border: 1px solid var(--line-green);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.page-brand-card img {
  width: 100%;
  aspect-ratio: 3 / 1;
  border-radius: 14px;
  object-fit: cover;
}

/* Sections et typographie */
section {
  padding: 88px 0;
}

section:not(.hero):not(.terrain):not(.cta-band) {
  background: transparent;
}

section:nth-of-type(even):not(.hero):not(.terrain):not(.cta-band) {
  background: rgba(241, 245, 241, 0.6);
}

.center {
  text-align: center;
}

h2 {
  margin-bottom: 15px;
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 870;
  letter-spacing: -0.044em;
  line-height: 1.12;
}

.sub {
  max-width: 64ch;
  margin: 0 auto 46px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.center h2::after {
  display: block;
  width: 48px;
  height: 3px;
  margin: 19px auto 0;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

/* Présentation et conversations */
.story {
  background: linear-gradient(145deg, #f4f0e6, #fbfaf7) !important;
}

.story-row {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: 72px;
}

.story-row.flip .story-text {
  order: 2;
}

.story-row.flip .story-visual {
  order: 1;
}

.story-text p:not(.eyebrow) {
  margin: 0 0 17px;
  color: var(--muted-strong);
  font-size: 1.01rem;
  line-height: 1.8;
}

.story-text .btn {
  margin-top: 10px;
}

.signature {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
}

.sig-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--green-deep);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
}

.sig-name {
  color: var(--ink);
  font-weight: 800;
}

.sig-role {
  color: var(--muted);
  font-size: 0.86rem;
}

.story-visual {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line-green);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.visual-badge {
  position: absolute;
  top: -18px;
  left: 24px;
  padding: 9px 14px;
  border: 1px solid var(--line-green);
  border-radius: 999px;
  background: #fff;
  color: var(--green-strong);
  box-shadow: 0 8px 20px rgba(38, 65, 53, 0.1);
  font-size: 0.8rem;
  font-weight: 800;
}

.chat-demo {
  display: grid;
  gap: 14px;
}

.chat-line {
  max-width: 88%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px 18px 18px 5px;
  background: var(--surface-warm);
}

.chat-line.ace {
  justify-self: end;
  border-color: #c7dfd2;
  border-radius: 18px 18px 5px 18px;
  background: var(--green-soft);
}

.chat-line .who {
  margin-bottom: 4px;
  color: var(--green-strong);
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.02em;
}

.chat-line .msg {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.chat-when {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.illus {
  width: 100%;
  border-radius: 18px;
}

.solution-photo-card {
  min-height: 520px;
  padding: 10px;
  overflow: hidden;
  border-color: rgba(47, 143, 99, 0.25);
  background: #fff;
  transform: rotate(1deg);
}

.solution-photo {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

.solution-photo-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(23, 59, 48, 0.84);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 760;
  text-align: center;
  backdrop-filter: blur(12px);
}

/* Bénéfices */
.assurances {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.assurance {
  display: flex;
  gap: 17px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(38, 65, 53, 0.07);
}

.assurance .ico {
  display: grid;
  width: 46px;
  height: 46px;
  flex: none;
  place-items: center;
  border-radius: 14px;
  background: var(--green-soft);
  font-size: 1.35rem;
}

.assurance h3 {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.3;
}

.assurance p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.67;
}

/* Cartes de navigation */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.nav-card {
  position: relative;
  overflow: hidden;
  min-height: 236px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(38, 65, 53, 0.07);
}

.nav-card::after {
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(47, 143, 99, 0.18);
  border-radius: 50%;
  content: "";
}

.nav-card:hover {
  border-color: var(--line-green);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.nav-card .ico {
  margin-bottom: 18px;
  font-size: 1.7rem;
}

.nav-card h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 1.14rem;
}

.nav-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.nav-card .arrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 16px;
  color: var(--green-strong);
  font-size: 0.92rem;
  font-weight: 780;
}

/* Fil du séjour */
.fil-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.stage {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(38, 65, 53, 0.07);
}

.stage .when {
  margin-bottom: 11px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 830;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage h3 {
  margin-bottom: 15px;
  color: var(--ink);
  font-size: 1.08rem;
}

.bubble {
  flex: 1;
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #c6dfd1;
  border-radius: 14px 14px 14px 3px;
  background: var(--green-soft);
  color: var(--ink-soft);
  font-size: 0.89rem;
  line-height: 1.65;
}

.stage .auto {
  color: #7c8e86;
  font-size: 0.79rem;
  font-style: italic;
  line-height: 1.55;
}

/* Fonctions */
.functions-page section:not(.cta-band) {
  background: transparent;
}

.feat-grid {
  counter-reset: feature;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feat {
  counter-increment: feature;
  position: relative;
  overflow: hidden;
  min-height: 244px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(38, 65, 53, 0.07);
}

.feat::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 3px;
  background: var(--green);
  content: "";
  transition: width 0.25s ease;
}

.feat::after {
  position: absolute;
  top: 21px;
  right: 22px;
  color: #a4b4ac;
  content: counter(feature, decimal-leading-zero);
  font-size: 0.82rem;
  font-weight: 800;
}

.feat:hover {
  border-color: var(--line-green);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.feat:hover::before {
  width: 100%;
}

.feat .ico {
  display: flex;
  width: 49px;
  height: 49px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid #c9ded3;
  border-radius: 14px;
  background: var(--green-soft);
  font-size: 1.4rem;
}

.feat h3 {
  padding-right: 30px;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 1.12rem;
}

.feat p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

/* Terrain */
.terrain {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 10% 0, rgba(88, 201, 130, 0.16), transparent 28rem),
    linear-gradient(135deg, #214f40, #173b30);
}

.terrain h2 {
  color: #fff;
}

.terrain p.big {
  max-width: 72ch;
  margin: 0 auto 46px;
  color: #d5e1db;
  font-size: 1.08rem;
  line-height: 1.8;
  text-align: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: center;
}

.stat {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.stat .num {
  color: #79d49c;
  font-size: 2.35rem;
  font-weight: 870;
}

.stat .lab {
  margin-top: 5px;
  color: #d1ddd7;
  font-size: 0.93rem;
}

/* Tarifs */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.price {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(38, 65, 53, 0.08);
  transform: translateY(0);
}

.price.pop {
  position: relative;
}

@media (hover: hover) {
  .price:hover {
    border-color: var(--green);
    box-shadow: 0 20px 48px rgba(31, 118, 80, 0.17);
    transform: translateY(-7px);
  }
}

.price:focus-within {
  border-color: var(--green);
  box-shadow: 0 20px 48px rgba(31, 118, 80, 0.17);
  transform: translateY(-7px);
}

.price .tag {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--green-strong);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 820;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price h3 {
  color: var(--ink);
  font-size: 1.28rem;
}

.price .amt {
  margin: 12px 0 3px;
  color: var(--ink);
  font-size: 2.3rem;
  font-weight: 870;
}

.price .amt small {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.price ul {
  flex: 1;
  margin: 20px 0 28px;
  list-style: none;
}

.price li {
  position: relative;
  padding: 7px 0 7px 25px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.5;
}

.price li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 850;
}

.price .btn {
  width: 100%;
  text-align: center;
}

.note-prix {
  margin-top: 22px;
  color: #7c8f86;
  font-size: 0.86rem;
  text-align: center;
}

/* Formulaire */
.form-card {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.form-card label {
  display: block;
  margin: 15px 0 7px;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 720;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cfdbd4;
  border-radius: 12px;
  background: #fbfcfa;
  color: var(--ink);
}

.form-card textarea {
  min-height: 128px;
  resize: vertical;
  line-height: 1.55;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #91a098;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47, 143, 99, 0.1);
}

.form-card .btn {
  width: 100%;
  margin-top: 24px;
}

.form-card .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.selected-offer {
  margin: 0 0 22px;
  padding: 15px 17px;
  border: 1px solid rgba(47, 143, 99, 0.35);
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
}

.selected-offer[hidden] {
  display: none;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.optional {
  color: #84958d;
  font-size: 0.84em;
  font-weight: 500;
}

.form-note {
  margin-top: 14px;
  color: #819189;
  font-size: 0.84rem;
  line-height: 1.55;
  text-align: center;
}

.ok-msg {
  padding: 17px;
  border: 1px solid #91c3aa;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 650;
  text-align: center;
}

.ok-msg:not([hidden]) {
  display: block;
  margin-top: 18px;
}

.ok-msg[hidden] {
  display: none;
}

.ok-msg.is-error {
  border-color: #d0a29a;
  background: #fff0ed;
  color: #7f3028;
}

.ok-msg a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-alt {
  margin-top: 22px;
  color: var(--muted);
  text-align: center;
}

.contact-alt a {
  color: var(--green-strong);
  font-weight: 700;
}

/* CTA et pied de page */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background:
    radial-gradient(circle at 12% 0, rgba(121, 212, 156, 0.18), transparent 24rem),
    linear-gradient(135deg, #24513f, #173b30);
  text-align: center;
}

.cta-band::after {
  position: absolute;
  right: -85px;
  bottom: -180px;
  width: 300px;
  height: 300px;
  border: 34px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.cta-band .wrap {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  margin-bottom: 10px;
  color: #fff;
}

.cta-band p {
  margin-bottom: 24px;
  color: #d7e2dc;
}

.cta-band .btn {
  border-color: #fff;
  background: #fff;
  color: var(--green-deep);
}

.cta-band .btn:hover {
  background: #edf6f0;
}

footer {
  padding: 54px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #102c25;
  color: #b9c9c2;
  font-size: 0.9rem;
}

.foot-in {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  justify-content: space-between;
  gap: 48px;
}

footer .logo {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 850;
}

footer .logo span {
  color: #79d49c !important;
}

footer strong {
  color: #fff !important;
}

footer a {
  color: #cfdbd5;
}

footer a:hover {
  color: #79d49c;
}

@media (max-width: 1080px) {
  .nav-in {
    gap: 12px;
  }

  nav.links a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 0.85rem;
  }

  .nav-cta {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.93fr) minmax(430px, 1.07fr);
    gap: 38px;
  }

  .hero-media {
    margin-right: -30px;
  }

  .page-head-layout {
    gap: 40px;
  }
}

@media (max-width: 920px) {
  .nav-in {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 72px;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-cta {
    display: none;
  }

  nav.links {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
    padding: 12px 0 0;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-top: 1px solid var(--line);
  }

  nav.links.is-open {
    display: flex;
  }

  nav.links a {
    width: 100%;
    padding: 11px 13px;
    border-radius: 11px;
    font-size: 0.95rem;
  }

  .mobile-contact-link {
    display: block !important;
    margin-top: 6px;
    background: var(--green-strong) !important;
    color: #fff !important;
    text-align: center;
  }

  .hero {
    background: linear-gradient(155deg, #fbfaf6, #edf5ef);
  }

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

  .hero-text {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero-media {
    margin: 2px 0 0;
    border-radius: 28px;
  }

  .hero-media img {
    min-height: 420px;
    border-radius: 18px;
  }

  .page-head-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-brand-card {
    max-width: 560px;
  }

  .story-row {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .story-row.flip .story-text,
  .story-row.flip .story-visual {
    order: initial;
  }

  .assurances,
  .nav-cards,
  .feat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .price.pop {
    transform: none;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand {
    gap: 9px;
  }

  .brand-ico {
    width: 43px;
    height: 43px;
    border-radius: 13px;
  }

  .brand-txt {
    font-size: 1.02rem;
  }

  .brand-txt small {
    display: none;
  }

  .menu-toggle {
    padding: 9px 11px;
  }

  .hero {
    padding: 58px 0 62px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 3.5rem);
  }

  .hero .lead {
    font-size: 1rem;
  }

  .hero .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero .btn {
    width: 100%;
  }

  .hero-media {
    padding: 8px;
    border-radius: 22px;
  }

  .hero-media img {
    min-height: 300px;
    border-radius: 16px;
  }

  .hero-media::after {
    right: 14px;
    bottom: -18px;
    max-width: calc(100% - 28px);
    padding: 8px 12px;
    font-size: 0.68rem;
    text-align: center;
  }

  .page-head {
    padding: 62px 0 54px;
  }

  .page-head h1 {
    font-size: 2.65rem;
  }

  .page-head p:not(.eyebrow) {
    font-size: 1rem;
  }

  .page-brand-card {
    padding: 9px;
    border-radius: 18px;
  }

  section {
    padding: 66px 0;
  }

  .assurances,
  .nav-cards,
  .feat-grid,
  .fil-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .nav-card,
  .feat {
    min-height: 0;
  }

  .stage {
    min-height: 320px;
  }

  .story-visual {
    padding: 22px 16px;
  }

  .solution-photo-card {
    min-height: 380px;
    padding: 7px;
    transform: none;
  }

  .solution-photo {
    height: 366px;
    border-radius: 17px;
  }

  .solution-photo-badge {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .chat-line {
    max-width: 94%;
  }

  .form-card {
    padding: 28px 20px;
  }

  .foot-in {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 390px) {
  .brand-txt {
    font-size: 0.96rem;
  }

  .menu-toggle span:last-child {
    display: none;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Accueil éditorial V2 */
.home-page {
  background: #faf9f5;
}

.home-page main {
  overflow: hidden;
}

.home-page main section {
  background: transparent;
}

.home-hero {
  padding: 34px 0 42px;
  background:
    radial-gradient(circle at 12% 22%, rgba(47, 143, 99, 0.08), transparent 25rem),
    #faf9f5 !important;
}

.hero-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(23, 59, 48, 0.1);
  border-radius: 34px;
  background: #f7f4ed;
  box-shadow: 0 30px 80px rgba(35, 65, 52, 0.13);
}

.hero-stage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 249, 245, 0.98) 0%, rgba(250, 249, 245, 0.92) 34%, rgba(250, 249, 245, 0.2) 53%, transparent 68%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: 49%;
  min-height: 650px;
  justify-content: center;
  flex-direction: column;
  padding: 70px 0 64px 68px;
}

.home-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 21px;
  color: var(--green-strong);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-kicker::before {
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.hero-copy h1 {
  max-width: 10ch;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 5.9vw, 5.65rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero-copy h1 span {
  color: var(--green);
  font-style: italic;
}

.hero-human {
  max-width: 13ch;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  font-weight: 790;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero-summary {
  max-width: 44ch;
  margin-top: 22px;
  color: var(--muted-strong);
  font-size: 0.98rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-strong);
  font-size: 0.91rem;
  font-weight: 790;
}

.text-link span {
  font-size: 1.15em;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-origin {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 3;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(23, 59, 48, 0.88);
  color: #fff;
  box-shadow: 0 12px 28px rgba(23, 59, 48, 0.2);
  font-size: 0.73rem;
  font-weight: 740;
  backdrop-filter: blur(10px);
}

.platform-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.platform-strip-in {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.platform-strip-in > p {
  color: #84948c;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.platform-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 820;
}

.platform-list i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.home-manifesto {
  padding: 118px 0 112px;
  background: #faf9f5 !important;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: end;
  gap: 92px;
}

.section-number {
  margin-bottom: 20px;
  color: var(--green-strong);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-page h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.manifesto-copy {
  padding-bottom: 4px;
}

.manifesto-copy p {
  color: var(--muted-strong);
  font-size: 1.06rem;
  line-height: 1.82;
}

.manifesto-copy p + p {
  margin-top: 18px;
}

.journey-section {
  padding: 104px 0 112px;
  background: #eef3ef !important;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 58px;
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #bed1c6;
}

.journey-step {
  position: relative;
  min-height: 330px;
  padding: 38px 28px 28px 0;
  border-right: 1px solid #bed1c6;
}

.journey-step + .journey-step {
  padding-left: 28px;
}

.journey-step:last-child {
  border-right: 0;
}

.journey-step::before {
  position: absolute;
  top: -6px;
  left: -1px;
  width: 11px;
  height: 11px;
  border: 3px solid #eef3ef;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
  content: "";
}

.journey-index {
  display: block;
  margin-bottom: 48px;
  color: #9aaba2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1;
}

.journey-time {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.journey-step h3 {
  max-width: 14ch;
  margin-bottom: 13px;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.28;
}

.journey-step > p:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.feature-section {
  padding: 112px 0 124px;
  background: #faf9f5 !important;
}

.feature-heading > p {
  max-width: 43ch;
  padding-bottom: 4px;
  color: var(--muted);
  line-height: 1.75;
}

.feature-mosaic {
  display: grid;
  grid-template-columns: 1.24fr 0.76fr;
  grid-template-rows: repeat(2, minmax(250px, auto));
  gap: 22px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(38, 65, 53, 0.08);
}

.feature-card-main {
  grid-row: 1 / 3;
  min-height: 610px;
  padding: 42px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 143, 99, 0.09), transparent 23rem),
    #fff;
}

.feature-card-control {
  background: #173b30;
  color: #fff;
}

.feature-card-ready {
  background: #f3efe6;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 15px;
  background: var(--green-soft);
  color: var(--green-strong);
  font-size: 1.2rem;
  font-weight: 900;
}

.feature-card-control .feature-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #80d4a1;
}

.feature-label {
  margin-bottom: 10px;
  color: var(--green-strong);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card-control .feature-label {
  color: #80d4a1;
}

.feature-card h3 {
  max-width: 22ch;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.8vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.feature-card-control h3 {
  color: #fff;
}

.feature-card-ready > p:not(.feature-label) {
  max-width: 42ch;
  margin: 16px 0 24px;
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.message-preview {
  display: grid;
  gap: 15px;
  margin-top: 58px;
}

.message-bubble {
  max-width: 76%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 19px 19px 19px 5px;
  background: #f6f2ea;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.message-bubble-ace {
  justify-self: end;
  border-color: #bddacb;
  border-radius: 19px 19px 5px 19px;
  background: var(--green-soft);
}

.message-bubble span {
  display: block;
  margin-bottom: 4px;
  color: var(--green-strong);
  font-size: 0.7rem;
  font-weight: 850;
}

.telegram-phone {
  position: relative;
  max-width: 360px;
  margin-top: 30px;
  overflow: hidden;
  border: 6px solid #0c241d;
  border-radius: 27px;
  background: #dfe8eb;
  color: #172a32;
  box-shadow: 0 22px 42px rgba(4, 20, 15, 0.34);
  font-family: Inter, "Segoe UI", sans-serif;
}

.telegram-phone::before {
  position: absolute;
  top: 7px;
  left: 50%;
  z-index: 3;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: #aec0c6;
  content: "";
  transform: translateX(-50%);
}

.telegram-status {
  display: flex;
  height: 27px;
  align-items: end;
  justify-content: space-between;
  padding: 0 13px 4px;
  background: #f9fbfc;
  color: #47606a;
  font-size: 0.57rem;
  font-weight: 720;
}

.telegram-header {
  display: grid;
  grid-template-columns: 18px 34px minmax(0, 1fr) 24px;
  min-height: 52px;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-top: 1px solid #edf1f2;
  border-bottom: 1px solid #d6e0e3;
  background: #fff;
}

.telegram-back {
  color: #229ed9;
  font-size: 1.65rem;
  line-height: 1;
}

.telegram-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #38a775, #1f7650);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.telegram-contact {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.15;
}

.telegram-contact strong {
  overflow: hidden;
  color: #1b3038;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.telegram-contact small {
  margin-top: 3px;
  color: #82959c;
  font-size: 0.62rem;
}

.telegram-plane {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #229ed9;
  color: #fff;
  font-size: 0.62rem;
  transform: rotate(-32deg);
}

.telegram-chat {
  display: flex;
  min-height: 292px;
  padding: 11px 10px 12px;
  flex-direction: column;
  gap: 7px;
  background-color: #dce6e8;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.33) 0 2px, transparent 2.5px),
    radial-gradient(circle at 82% 65%, rgba(48, 95, 106, 0.08) 0 2px, transparent 2.5px);
  background-size: 34px 34px, 42px 42px;
}

.telegram-day {
  align-self: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(95, 128, 139, 0.56);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 730;
}

.telegram-bubble {
  position: relative;
  display: flex;
  max-width: 88%;
  padding: 9px 10px 16px;
  flex-direction: column;
  border-radius: 6px 13px 13px 13px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(42, 66, 73, 0.14);
  color: #1c333b;
  font-size: 0.68rem;
  line-height: 1.38;
}

.telegram-bubble b {
  margin-bottom: 5px;
  color: var(--green-strong);
  font-size: 0.63rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.telegram-property {
  color: #41575f;
}

.telegram-dates {
  margin: 2px 0 5px;
  color: #1f7650;
  font-size: 0.74rem;
  font-weight: 820;
}

.telegram-bubble > strong {
  color: #172c34;
  font-size: 0.71rem;
}

.telegram-bubble time {
  position: absolute;
  right: 7px;
  bottom: 4px;
  color: #8a9ba0;
  font-size: 0.49rem;
}

.telegram-actions {
  display: grid;
  width: 88%;
  margin-top: -8px;
  overflow: hidden;
  grid-template-columns: 0.72fr 1.28fr;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 1px 2px rgba(42, 66, 73, 0.14);
}

.telegram-actions span {
  padding: 7px 5px;
  border-top: 1px solid #dce7eb;
  background: rgba(255, 255, 255, 0.96);
  color: #229ed9;
  font-size: 0.58rem;
  font-weight: 790;
  text-align: center;
}

.telegram-actions span + span {
  border-left: 1px solid #dce7eb;
}

.telegram-outgoing {
  align-self: flex-end;
  padding-right: 52px;
  border-radius: 13px 6px 13px 13px;
  background: #dcf8c6;
}

.telegram-outgoing time {
  color: #4b916d;
}

.telegram-confirm {
  max-width: 78%;
}

.telegram-composer {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px 6px 13px;
  border-top: 1px solid #d4dee1;
  background: #f9fbfc;
  color: #97a6ab;
  font-size: 0.63rem;
}

.telegram-composer b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #229ed9;
  color: #fff;
  font-size: 0.62rem;
  transform: rotate(-32deg);
}

.origin-section {
  padding: 120px 0;
  background: #f2eee5 !important;
}

.origin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 78px;
}

.origin-photo {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(38, 65, 53, 0.15);
}

.origin-photo img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.origin-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(23, 59, 48, 0.82);
  color: #fff;
  font-size: 0.75rem;
  backdrop-filter: blur(12px);
}

.origin-copy > p:not(.section-number) {
  margin-top: 18px;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.78;
}

.origin-signature {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 30px 0 24px;
}

.origin-signature img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(23, 59, 48, 0.15);
}

.origin-signature strong,
.origin-signature span {
  display: block;
}

.origin-signature strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.origin-signature span {
  color: var(--muted);
  font-size: 0.79rem;
}

.offer-section {
  padding: 34px 0 90px;
  background: #faf9f5 !important;
}

.offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 76px;
  padding: 68px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 0%, rgba(121, 212, 156, 0.14), transparent 23rem),
    #173b30;
  box-shadow: 0 26px 70px rgba(23, 59, 48, 0.2);
}

.offer-panel .section-number {
  color: #80d4a1;
}

.offer-panel h2 {
  color: #fff;
  font-size: clamp(2.45rem, 4vw, 3.9rem);
}

.offer-actions > p {
  margin-bottom: 27px;
  color: #ccd9d3;
  line-height: 1.8;
}

.offer-actions > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.offer-panel .btn {
  border-color: #fff;
  background: #fff;
  color: var(--green-deep);
}

.text-link-light {
  color: #a6dfbc;
}

.footer-promise {
  max-width: 34ch;
  margin-top: 8px;
}

@media (max-width: 1040px) {
  .hero-stage {
    min-height: 620px;
  }

  .hero-copy {
    width: 53%;
    min-height: 620px;
    padding-left: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(3.3rem, 6vw, 4.8rem);
  }

  .manifesto-grid,
  .origin-layout,
  .offer-panel {
    gap: 52px;
  }

  .journey-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 0;
  }

  .journey-step,
  .journey-step + .journey-step {
    min-height: 290px;
    padding: 32px 26px;
    border-top: 1px solid #bed1c6;
  }

  .journey-step:nth-child(even) {
    border-right: 0;
  }

  .journey-step::before {
    left: 25px;
  }

  .journey-index {
    margin-bottom: 36px;
  }
}

@media (max-width: 820px) {
  .home-hero {
    padding-top: 22px;
  }

  .hero-stage {
    display: flex;
    min-height: auto;
    flex-direction: column;
    overflow: visible;
    border-radius: 28px;
  }

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

  .hero-copy {
    width: 100%;
    min-height: auto;
    order: 1;
    padding: 54px 42px 42px;
    border-radius: 28px 28px 0 0;
    background: #f9f7f1;
  }

  .hero-stage-image {
    position: relative;
    width: 100%;
    height: 400px;
    order: 2;
    border-radius: 0 0 28px 28px;
    object-position: 70% center;
  }

  .hero-origin {
    right: 18px;
    bottom: 18px;
  }

  .platform-strip-in {
    padding-top: 20px;
    padding-bottom: 20px;
    flex-direction: column;
    gap: 10px;
  }

  .manifesto-grid,
  .origin-layout,
  .offer-panel {
    grid-template-columns: 1fr;
  }

  .manifesto-grid {
    gap: 34px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .feature-card-main {
    grid-row: auto;
    min-height: 560px;
  }

  .origin-layout {
    gap: 48px;
  }

  .origin-photo img {
    min-height: 430px;
  }

  .offer-panel {
    padding: 52px 42px;
  }
}

@media (max-width: 560px) {
  .home-page .wrap {
    padding-right: 16px;
    padding-left: 16px;
  }

  .home-hero {
    padding-bottom: 28px;
  }

  .hero-copy {
    padding: 42px 24px 34px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .hero-human {
    max-width: 15ch;
    font-size: 1.65rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

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

  .hero-stage-image {
    height: 310px;
    object-position: 72% center;
  }

  .hero-origin {
    max-width: calc(100% - 36px);
    text-align: center;
  }

  .platform-list {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .home-manifesto,
  .journey-section,
  .feature-section,
  .origin-section {
    padding: 78px 0;
  }

  .home-page h2 {
    font-size: clamp(2.55rem, 12vw, 3.45rem);
  }

  .journey-track {
    grid-template-columns: 1fr;
  }

  .journey-step,
  .journey-step + .journey-step {
    min-height: auto;
    padding: 32px 12px 38px 26px;
    border-right: 0;
  }

  .journey-index {
    margin-bottom: 26px;
  }

  .feature-card,
  .feature-card-main {
    min-height: auto;
    padding: 28px 22px;
  }

  .message-preview {
    margin-top: 38px;
  }

  .message-bubble {
    max-width: 92%;
  }

  .origin-photo img {
    min-height: 340px;
  }

  .offer-section {
    padding-bottom: 64px;
  }

  .offer-panel {
    gap: 34px;
    padding: 42px 25px;
    border-radius: 26px;
  }

  .offer-panel h2 {
    font-size: 2.5rem;
  }

  .offer-actions > div {
    align-items: stretch;
    flex-direction: column;
  }
}
