:root {
  --bg: #f7f4ec;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #1d1d1f;
  --text: #2c302d;
  --muted: #73776f;

  --green: #2f6b4f;
  --green-dark: #174631;
  --green-soft: #e8f3e7;

  --yellow: #f4c95d;
  --yellow-soft: #fff3ce;

  --blue: #0a84ff;
  --danger: #8a352f;

  --line: rgba(23, 70, 49, 0.13);
  --shadow: 0 24px 70px rgba(23, 70, 49, 0.10);

  --shell: min(1120px, calc(100vw - 40px));
  --radius: 30px;
  --radius-lg: 42px;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  color: white;
  background: var(--green-dark);
}

.skip-link:focus {
  transform: translateY(0);
}

/* HEADER - volontairement simple et robuste */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 244, 236, 0.86);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(23, 70, 49, 0.06);
}

.header-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo img {
  width: auto;
  height: 100px;
  max-width: 100px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.66);
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(29, 29, 31, 0.70);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  color: white;
  background: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: 0.2s ease;
}

.menu-toggle span:first-child {
  top: 15px;
}

.menu-toggle span:last-child {
  top: 24px;
}

.menu-toggle.is-open span:first-child {
  top: 20px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: 8px;
  width: var(--shell);
  margin: 0 auto 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow);
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav a {
  padding: 14px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  font-weight: 750;
}

.mobile-call {
  color: white !important;
  background: var(--green-dark) !important;
  text-align: center;
  justify-content: center;
}

/* BASE */

.site-main {
  overflow: hidden;
}

.section {
  padding: clamp(74px, 8vw, 118px) 0;
}

.section-white {
  background: var(--white);
}

.kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 930px;
  margin: 0 auto 24px;
  color: var(--ink);
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  text-align: center;
  text-wrap: balance;
}

h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

p {
  color: var(--muted);
  line-height: 1.58;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 750;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 18px 42px rgba(23, 70, 49, 0.22);
}

.btn-secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.btn-white {
  width: 100%;
  color: var(--ink);
  background: white;
}

/* HERO */

.hero {
  padding: clamp(70px, 8vw, 112px) 0 48px;
}

.hero-layout {
  display: grid;
  gap: 44px;
}

.hero-content {
  text-align: center;
}

.hero-lead {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 52vw, 620px);
  border-radius: var(--radius-lg);
  background: #e8e8e8;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-media-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 24px;
  color: white;
  background: rgba(23, 70, 49, 0.48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-media-caption strong {
  font-size: 21px;
  letter-spacing: -0.03em;
}

.hero-media-caption span {
  color: rgba(255, 255, 255, 0.82);
}

/* SECTIONS */

.title-block {
  max-width: 790px;
  margin-bottom: 36px;
}

.title-block.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.title-block p {
  font-size: 19px;
  letter-spacing: -0.015em;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.clean-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg);
}

.clean-card p {
  margin-bottom: 0;
}

.card-symbol {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 16px;
  color: var(--green-dark);
  background: var(--yellow-soft);
  border: 1px solid rgba(244, 201, 93, 0.55);
  font-weight: 900;
}

/* SPLITS */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.split-section.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.image-panel {
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-lg);
  background: #ddd;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.text-panel p,
.product-copy p,
.pricing-copy p,
.value-card p,
.final-inner p {
  font-size: 19px;
}

.pill-row,
.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-row span,
.signal-list span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--green-soft);
  font-size: 14px;
  font-weight: 700;
}

.pill-row.large span {
  background: var(--yellow-soft);
}

/* TARIFS */

.price-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
}

.price-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 34px;
  background: var(--bg);
  overflow: visible;
}

.price-main,
.price-tax {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  padding: 26px;
  border-radius: 24px;
}

.price-main {
  background: var(--paper);
}

.price-main span,
.price-tax span {
  color: var(--muted);
  font-weight: 700;
}

.price-main strong,
.price-tax strong {
  display: block;
  margin-top: 42px;
  color: var(--ink);
  font-size: clamp(54px, 7vw, 82px);
  line-height: 0.86;
  letter-spacing: -0.09em;
}

.price-main small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.price-tax {
  color: white;
  background: linear-gradient(145deg, var(--green-dark), var(--green));
}

.price-tax span,
.price-tax strong {
  color: white;
}

.price-tax span {
  color: rgba(255, 255, 255, 0.78);
}

.sap-logo {
  position: absolute;
  z-index: 10;
  top: -42px;
  left: -34px;
  width: 142px;
  height: auto;
  transform: rotate(-10deg);
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.legal-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1040px) {
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .price-card {
    grid-template-columns: 1fr;
  }

  .price-card--sap {
    margin-top: 46px;
  }

  .sap-logo {
    top: -46px;
    left: 10px;
    width: 112px;
    transform: rotate(-8deg);
  }

  .price-main strong,
  .price-tax strong {
    font-size: 58px;
  }
}








/* PRODUCT + PHONE */

.product-section {
  background: linear-gradient(180deg, var(--bg), #eef5ec);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.product-copy p {
  max-width: 640px;
}

.phone-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 42px;
  background: #111;
  box-shadow: var(--shadow);
}

.phone-large {
  max-width: 460px;
  margin-inline: auto;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px 14px;
  color: white;
}

.phone-header span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--yellow));
}

.phone-header strong {
  font-size: 14px;
}

.sms {
  max-width: 82%;
  padding: 13px 15px;
  border-radius: 20px;
  font-size: 15px;
  line-height: 1.38;
}

.sms-left {
  justify-self: start;
  color: var(--ink);
  background: #e9e9eb;
  border-bottom-left-radius: 6px;
}

.sms-right {
  justify-self: end;
  color: white;
  background: var(--blue);
  border-bottom-right-radius: 6px;
}

.sms-alert {
  justify-self: start;
  max-width: 94%;
  color: white;
  background: linear-gradient(145deg, var(--green-dark), #0f3445);
  border-bottom-left-radius: 6px;
}

.sms-alert small {
  display: inline-block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 800;
}

.sms-alert strong {
  display: block;
  color: white;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.sms-alert p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

/* IMAGE DUO */

.image-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.image-tile {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg);
}

.image-tile img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.image-tile div {
  padding: 28px;
}

.image-tile p {
  margin-bottom: 0;
}

/* COMPARISON */

.compare-section {
  background: #f0f6ee;
}

.comparison-table {
  overflow: hidden;
  border-radius: 32px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) minmax(130px, 0.55fr) minmax(160px, 0.75fr);
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > div {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 650;
}

.comparison-row > div:not(:first-child) {
  justify-content: center;
  text-align: center;
}

.comparison-head {
  background: var(--green-dark);
}

.comparison-head > div {
  min-height: 64px;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comparison-row.highlighted {
  background: linear-gradient(90deg, rgba(255, 243, 206, 0.7), rgba(232, 243, 231, 0.55));
}

.check,
.cross {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-weight: 900;
}

.check {
  color: var(--green-dark);
  background: var(--green-soft);
}

.cross {
  color: var(--muted);
  background: #f0f0f0;
}

/* PRICING BOUCLIER */

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.45;
}

.clean-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.subscription-card {
  padding: 32px;
  border-radius: 36px;
  color: white;
  background: linear-gradient(145deg, #111, var(--green-dark));
  box-shadow: var(--shadow);
}

.subscription-card span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.subscription-card strong {
  display: block;
  margin: 46px 0 10px;
  color: white;
  font-size: clamp(66px, 8vw, 92px);
  line-height: 0.84;
  letter-spacing: -0.09em;
}

.subscription-card p {
  color: rgba(255, 255, 255, 0.74);
}

.subscription-card small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

/* VALUE + WARNING */

.value-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.value-numbers {
  display: grid;
  gap: 10px;
}

.value-numbers div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-radius: 24px;
  background: var(--green-soft);
}

.value-numbers span {
  color: var(--muted);
  font-weight: 700;
}

.value-numbers strong {
  color: var(--ink);
  font-size: 34px;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.warning-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--bg);
}

.warning-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--green-dark);
  background: var(--yellow-soft);
  border: 1px solid rgba(244, 201, 93, 0.6);
  font-size: 28px;
  font-weight: 900;
}

/* CTA */

.final-cta {
  text-align: center;
}

.final-inner {
  max-width: 880px;
}

.final-inner h2 {
  text-align: center;
}

.final-inner p {
  max-width: 650px;
  margin-inline: auto;
}

.centered-buttons {
  justify-content: center;
}

/* FOOTER */

.site-footer {
  padding: 48px 0 24px;
  background: #111;
  color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 24px;
}

.footer-logo {
  display: block;
  margin-bottom: 12px;
  color: white;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: white;
  font-size: 15px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.64);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* RESPONSIVE */

@media (max-width: 1040px) {
  .main-nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-inner {
    min-height: 62px;
  }

  .card-grid.three,
  .split-section,
  .split-section.reverse,
  .price-grid,
  .product-layout,
  .image-duo,
  .pricing-layout,
  .value-card,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .image-panel {
    min-height: 430px;
  }

  .price-card {
    grid-template-columns: 1fr;
  }

  .phone-large {
    max-width: none;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 760px;
  }

  .warning-card {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100vw - 28px, 520px);
  }

  .brand-name {
    font-size: 15px;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .hero-buttons,
  .hero-buttons .btn,
  .btn {
    width: 100%;
  }

  .hero-media,
  .image-panel {
    min-height: 320px;
    border-radius: 30px;
  }

  .hero-media-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .clean-card {
    min-height: 220px;
  }

  .price-main strong,
  .price-tax strong,
  .subscription-card strong {
    font-size: 58px;
  }

  .phone-card {
    border-radius: 32px;
  }

  .footer-bottom div {
    display: grid;
    gap: 8px;
  }
}


.final-inner .legal-note {
  margin-top: 24px;
  font-size: 13px;
}