@charset "UTF-8";
* {
  box-sizing: border-box;
}

:root {
  --text: #1f2b2f;
  --muted: #5b6b73;
  --muted-strong: #6e8795;
  --primary: #2f6d4a;
  --primary-strong: #1f4f33;
  --accent: #d8aa5a;
  --accent-2: #3c566f;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --border: rgba(31, 43, 47, 0.08);
  --border-strong: rgba(31, 43, 47, 0.15);
  --shadow: rgba(31, 43, 47, 0.16);
  --outline: #4a6a89;
  --body-bg: radial-gradient(circle at 16% 18%, rgba(47, 109, 74, 0.08), transparent 28%), radial-gradient(circle at 82% 12%, rgba(60, 86, 111, 0.08), transparent 24%), linear-gradient(180deg, #fbf8f1, #f6f2e9 60%, #f1ede4);
  --glow-a: rgba(60, 86, 111, 0.14);
  --glow-b: rgba(47, 109, 74, 0.18);
  --cta-bg: linear-gradient(135deg, rgba(43, 108, 176, 0.2), rgba(46, 125, 50, 0.25));
  --section-space: 4rem;
}

.theme-forest {
  --primary: #2f6d4a;
  --primary-strong: #1f4f33;
  --accent: #d8aa5a;
  --accent-2: #3c566f;
  --body-bg: radial-gradient(circle at 16% 18%, rgba(47, 109, 74, 0.08), transparent 28%), radial-gradient(circle at 82% 12%, rgba(60, 86, 111, 0.08), transparent 24%), linear-gradient(180deg, #fbf8f1, #f6f2e9 60%, #f1ede4);
  --glow-a: rgba(60, 86, 111, 0.14);
  --glow-b: rgba(47, 109, 74, 0.18);
  --cta-bg: linear-gradient(135deg, rgba(43, 108, 176, 0.2), rgba(46, 125, 50, 0.25));
}

.theme-glacier {
  --primary: #1f6f8f;
  --primary-strong: #14506b;
  --accent: #8dd0ff;
  --accent-2: #1f3f5b;
  --body-bg: radial-gradient(circle at 18% 18%, rgba(31, 111, 143, 0.12), transparent 30%), radial-gradient(circle at 80% 12%, rgba(141, 208, 255, 0.18), transparent 26%), linear-gradient(180deg, #f7fbff, #eef4fa 60%, #e9f1f7);
  --glow-a: rgba(31, 111, 143, 0.16);
  --glow-b: rgba(68, 126, 165, 0.16);
  --cta-bg: linear-gradient(135deg, rgba(141, 208, 255, 0.32), rgba(31, 111, 143, 0.28));
}

.theme-sunset {
  --primary: #d45d24;
  --primary-strong: #a43f10;
  --accent: #f2b35d;
  --accent-2: #2f3a4f;
  --body-bg: radial-gradient(circle at 14% 16%, rgba(212, 93, 36, 0.12), transparent 26%), radial-gradient(circle at 82% 12%, rgba(242, 179, 93, 0.2), transparent 28%), linear-gradient(180deg, #fff8f3, #fbeee3 62%, #f4e6d9);
  --glow-a: rgba(212, 93, 36, 0.18);
  --glow-b: rgba(242, 179, 93, 0.18);
  --cta-bg: linear-gradient(135deg, rgba(212, 93, 36, 0.24), rgba(242, 179, 93, 0.3));
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

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

a:hover,
a:focus-visible {
  color: var(--accent-2);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

h1, h2, h3, h4 {
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 2.6vw + 1rem, 3.6rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.7rem, 1.4vw + 1rem, 2.6rem);
  letter-spacing: -0.005em;
}

h3 {
  font-size: clamp(1.2rem, 0.6vw + 1rem, 1.6rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

ul {
  padding-left: 1.1rem;
  margin: 0 0 1rem;
  color: var(--muted);
}

button,
input,
select,
textarea {
  font: inherit;
  color: var(--text);
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.grid-1 {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  gap: 3rem;
}

.grid-3 {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .grid-3-lg {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-2-md {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-3-md {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.grid-1 + .grid-1,
.grid-2 + .grid-2,
.grid-3 + .grid-3 {
  margin-top: 2rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: white;
  border-radius: 14px;
  z-index: 20;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
}

.logo__mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  border-radius: 0;
}

.logo__text {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.nav {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(253, 253, 251, 0.96), rgba(248, 248, 244, 0.92));
  opacity: 1;
  min-height: 100vh;
  width: 100vw;
  backdrop-filter: blur(6px);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  padding: 4rem 1rem 2rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  box-shadow: 0 12px 32px color-mix(in srgb, var(--shadow) 65%, transparent);
  border: 1px solid var(--border);
}

.nav.is-open {
  display: flex;
  transform: translateY(0);
}

.nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.1rem;
}

.nav__list a {
  position: relative;
  padding-bottom: 0.25rem;
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav__list a:hover::after,
.nav__list a:focus-visible::after {
  transform: scaleX(1);
}

.nav__beta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 18%, white), color-mix(in srgb, var(--accent) 24%, white));
  border: 1px solid color-mix(in srgb, var(--primary) 35%, transparent);
  font-weight: 700;
  color: var(--primary-strong);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--shadow) 65%, transparent);
}

.nav__beta:hover,
.nav__beta:focus-visible {
  color: var(--primary-strong);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px color-mix(in srgb, var(--shadow) 75%, transparent);
}

.nav__beta:focus-visible {
  outline: 2px solid var(--outline);
  outline-offset: 4px;
}

.nav__cta {
  align-self: flex-start;
}

.nav__close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: var(--surface-strong);
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  cursor: pointer;
  position: relative;
}

.nav__close::before {
  content: "×";
  font-weight: 700;
  line-height: 1;
}

.nav__toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-strong);
  background: var(--surface-strong);
  border-radius: 14px;
  display: grid;
  place-items: center;
  gap: 0.25rem;
  padding: 0.5rem;
}

.nav__toggle-line {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
}

.nav__toggle.is-active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active .nav__toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__toggle.is-active .nav__toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 768px) {
  .nav {
    position: static;
    transform: none;
    background: transparent;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 1.5rem;
    display: flex;
    box-shadow: none;
    min-height: auto;
    width: auto;
    opacity: 1;
    backdrop-filter: none;
    z-index: auto;
    border: none;
  }
  .nav__list {
    flex-direction: row;
    gap: 1rem;
  }
  .nav__cta {
    align-self: center;
  }
  .nav__toggle {
    display: none;
  }
  .nav__close {
    display: none;
  }
}
.hero {
  padding: 4rem 0 4rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #f6f8f5;
}

.hero__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.hero__content {
  display: grid;
  gap: 1.5rem;
  max-width: 640px;
}

.hero h1,
.hero .eyebrow {
  color: #f7f9f5;
}

.hero p,
.hero .lead,
.hero .intro {
  color: rgba(245, 247, 244, 0.9);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero .tag {
  border-color: rgba(255, 255, 255, 0.28);
  color: #f7f9f6;
  background: rgba(255, 255, 255, 0.08);
}

.hero__visual img {
  box-shadow: 0 12px 36px var(--shadow);
  object-fit: cover;
  height: 100%;
  border: 1px solid var(--border);
}

.hero__visual {
  display: none;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    align-items: center;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../asset/20230829_105017 - Copie (2).jpg") center/cover no-repeat;
  filter: blur(0px) saturate(1.05);
  transform: scale(1.02);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(0, 0, 0, 0.38), transparent 55%),
    linear-gradient(115deg, rgba(6, 15, 10, 0.78) 0%, rgba(6, 15, 10, 0.48) 55%, rgba(20, 36, 30, 0.18) 100%);
  z-index: -1;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--muted-strong);
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.15rem;
}

.intro {
  color: var(--muted);
  max-width: 720px;
}

.tag {
  border: 1px solid var(--border-strong);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  background: var(--surface);
}

.section-heading {
  margin-bottom: 2rem;
  max-width: 760px;
  display: grid;
  gap: 0.75rem;
  position: relative;
}

.section-heading::after {
  content: "";
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: block;
}

.cards {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px var(--shadow);
  backdrop-filter: blur(5px);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease, background 0.45s ease;
  display: grid;
  gap: 0.75rem;
  height: 100%;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px var(--shadow);
  border-color: rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.76);
}

.card--icon {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.card--icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.card--highlight {
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 18%, white), color-mix(in srgb, var(--accent) 18%, white));
  border-color: color-mix(in srgb, var(--primary) 32%, transparent);
}

.card--highlight:hover,
.card--highlight:focus-within {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 26%, white), color-mix(in srgb, var(--primary) 26%, white));
}

.card--ghost {
  background: transparent;
  border-style: dashed;
}

.muted {
  color: var(--muted);
}

.values {
  padding: var(--section-space) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.pitch,
.why,
.steps,
.gallery,
.listening,
.offers,
.pros,
.users,
.forms,
.beta,
.testimonials,
.faq,
.cta,
.contact {
  padding: var(--section-space) 0;
}

.pitch {
  padding-bottom: 0;
}

.forms {
  background: radial-gradient(circle at 24% 18%, color-mix(in srgb, var(--glow-a) 100%, transparent), transparent 32%), radial-gradient(circle at 82% 10%, color-mix(in srgb, var(--glow-b) 100%, transparent), transparent 28%);
}

.users {
  position: relative;
}

.users::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 1100px;
  height: 1px;
  margin: 2.5rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(31, 43, 47, 0.16), transparent);
}

.offers-details {
  padding: var(--section-space) 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.14), transparent 32%),
    radial-gradient(circle at 82% 25%, rgba(255, 255, 255, 0.12), transparent 30%),
    var(--cta-bg);
  border-top: 1px solid var(--border);
}

.forms__grid {
  align-items: center;
  gap: 2rem;
}

.offers {
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.14), transparent 32%),
    radial-gradient(circle at 82% 25%, rgba(255, 255, 255, 0.12), transparent 30%),
    var(--cta-bg);
  border-top: 0;
  border-bottom: 1px solid var(--border);
}

.beta {
  background: radial-gradient(circle at 30% 20%, var(--glow-a), transparent 35%), radial-gradient(circle at 80% 40%, var(--glow-b), transparent 35%);
}

.cta {
  background: var(--cta-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gallery__grid {
  gap: 1.5rem;
  align-items: stretch;
}

.gallery__item {
  display: grid;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(22px) scale(0.99);
  transition: transform 400ms ease, opacity 400ms ease;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 14px;
  box-shadow: 0 12px 36px var(--shadow);
}

.gallery__item--top img {
  object-position: center 28%;
}

.gallery__item--focus-top img {
  object-position: center 70%;
}

.gallery__item.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .gallery__item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.gallery__item figcaption {
  color: var(--muted);
  font-size: 0.98rem;
}

.gallery--fullwidth .container {
  width: min(1180px, 94vw);
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.gallery--fullwidth .gallery__grid {
  gap: 1rem;
  justify-items: center;
}

.gallery--fullwidth .gallery__item img {
  border-radius: 6px;
  box-shadow: none;
  aspect-ratio: 16/7;
  min-height: 320px;
  object-position: center center;
  max-width: 100%;
}

.why__grid {
  display: grid;
  gap: 3rem;
  justify-items: center;
  align-items: start;
}

.why__intro {
  text-align: center;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.why__points {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.why__points .card {
  height: 100%;
}

.why__points .conclusion {
  text-align: center;
}

.conclusion {
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.75rem;
  font-size: 1.16rem;
  margin-bottom: 0.15rem;
}

.steps__grid .card {
  position: relative;
}

.list {
  color: var(--muted);
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
}

.offers__grid ul {
  list-style: disc;
}

.section-separator {
  height: 1px;
  width: 100%;
  max-width: 1100px;
  margin: 1.75rem auto;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.section-separator--offers {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

@media (min-width: 768px) {
  .why__points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .why__points .conclusion {
    grid-column: 1/-1;
  }
}

.pros__grid,
.users__grid,
.beta__grid {
  align-items: center;
}

.testimonials blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.testimonials cite {
  display: block;
  margin-top: 0.75rem;
  color: var(--muted);
}

.rating {
  color: var(--primary);
  font-weight: 700;
}

.faq__list {
  display: grid;
  gap: 0.75rem;
}

.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.faq-payments,
.faq-pros,
.faq-users {
  padding: 3.5rem 0;
}

.faq-payments + .faq-pros,
.faq-pros + .faq-users {
  padding-top: 1.5rem;
}

@media (min-width: 768px) {
  .faq-payments,
  .faq-pros,
  .faq-users {
    padding: 4.5rem 0;
  }

  .faq-payments + .faq-pros,
  .faq-pros + .faq-users {
    padding-top: 2rem;
  }
}

.faq__question {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border: none;
  padding: 1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__question::after {
  content: "+";
  color: var(--muted);
}

.faq__question[aria-expanded=true]::after {
  content: "−";
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}

.faq__item.is-open .faq__answer {
  padding-bottom: 1rem;
  max-height: 200px;
}

.offers-summary {
  padding: var(--section-space) 0;
  background: radial-gradient(circle at 16% 12%, color-mix(in srgb, var(--glow-a) 70%, transparent), transparent 32%), radial-gradient(circle at 86% 18%, color-mix(in srgb, var(--glow-b) 70%, transparent), transparent 30%), linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.92));
}

.offers-summary .section-heading {
  max-width: 840px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.table-wrapper {
  margin-top: 2rem;
  overflow-x: auto;
  border-radius: 16px;
  background: var(--surface-strong);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--shadow) 70%, transparent);
  border: 1px solid var(--border);
}

.offers-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.offers-table thead th {
  text-align: left;
  font-weight: 700;
  padding: 1rem 1.1rem;
  background: color-mix(in srgb, var(--primary) 16%, white);
  color: var(--primary-strong);
  border-bottom: 1px solid var(--border-strong);
}

.offers-table tbody td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
}

.offers-table tr:nth-child(even) td {
  background: color-mix(in srgb, var(--accent) 6%, transparent);
}

.offers-table td:first-child,
.offers-table th:first-child {
  position: sticky;
  left: 0;
  background: color-mix(in srgb, var(--surface-strong) 100%, transparent);
  z-index: 1;
  font-weight: 700;
  min-width: 180px;
}

.offers-table th:nth-child(2),
.offers-table td:nth-child(2) {
  color: var(--muted-strong);
}

.offers-table th:nth-child(3),
.offers-table td:nth-child(3) {
  color: var(--primary-strong);
  font-weight: 700;
}

.offers-table th:nth-child(4),
.offers-table td:nth-child(4) {
  color: var(--accent-2);
  font-weight: 700;
}

.offers-table td {
  white-space: nowrap;
}

.offers-table tr:hover td {
  background: color-mix(in srgb, var(--accent) 10%, white 90%);
}

@media (max-width: 768px) {
  .offers-table {
    min-width: 640px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: white;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--primary) 26%, transparent);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border-color: color-mix(in srgb, var(--primary) 35%, transparent);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--primary) 18%, transparent);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 30%, transparent);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 75%, var(--primary)), color-mix(in srgb, var(--primary) 70%, white));
  color: var(--text);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border-color: color-mix(in srgb, var(--accent) 60%, transparent);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  border-color: color-mix(in srgb, var(--primary) 60%, transparent);
  color: var(--text);
}

.btn:focus-visible,
.nav__toggle:focus-visible,
.faq__question:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--outline);
  outline-offset: 3px;
}

.form {
  display: grid;
  gap: 0.75rem;
  background: var(--surface-strong);
  padding: 1rem;
  border-radius: 14px;
  box-shadow: 0 10px 28px var(--shadow);
}

.form__group {
  display: grid;
  gap: 0.5rem;
}

label {
  color: var(--text);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
}

.form__feedback {
  min-height: 1.5rem;
  margin: 0;
  font-weight: 600;
}

.cta {
  background: linear-gradient(135deg, rgba(43, 108, 176, 0.2), rgba(46, 125, 50, 0.25));
}

.cta__inner {
  display: grid;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cta__inner {
    grid-template-columns: 2fr 1fr;
  }
}
.cta__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  justify-self: center;
}

.cta__form input {
  flex: 1 1 260px;
  text-align: center;
}

.cta__form .btn {
  flex: 0 0 auto;
}

.prototype {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 24%, rgba(47, 109, 74, 0.08), transparent 32%), radial-gradient(circle at 82% 16%, rgba(60, 86, 111, 0.08), transparent 28%), linear-gradient(180deg, rgba(46, 125, 50, 0.04), rgba(31, 43, 47, 0.02));
}

.prototype__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: color-mix(in srgb, var(--surface) 90%, rgba(255, 255, 255, 0.24));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: 0 14px 42px rgba(31, 43, 47, 0.14);
  overflow: hidden;
}

.prototype__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(216, 170, 90, 0.08), rgba(47, 109, 74, 0.04));
  opacity: 0.7;
  filter: blur(24px);
  z-index: 0;
}

.prototype__content,
.prototype__preview {
  position: relative;
  z-index: 1;
}

.prototype__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.prototype__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(216, 170, 90, 0.16);
  color: var(--text);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.prototype h2 {
  margin-bottom: 0.75rem;
}

.prototype p {
  color: var(--muted);
}

.prototype__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0.75rem;
}

.prototype__chip {
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  background: rgba(60, 86, 111, 0.12);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(60, 86, 111, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.prototype__notice {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px dashed rgba(216, 170, 90, 0.6);
  border-radius: 14px;
  font-weight: 600;
  color: var(--text);
}

.prototype__notice::before {
  content: "⚠";
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 2px;
}

.prototype__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.prototype__hint {
  font-size: 0.95rem;
  color: var(--muted);
}

.prototype__preview {
  background: linear-gradient(145deg, rgba(60, 86, 111, 0.12), rgba(47, 109, 74, 0.1));
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 38px rgba(31, 43, 47, 0.16);
  position: relative;
  overflow: hidden;
}

.prototype__preview::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(216, 170, 90, 0.2), transparent 60%);
  top: -40px;
  right: -60px;
  opacity: 0.6;
  filter: blur(6px);
}

.prototype__screen {
  background: var(--surface-strong);
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 22px rgba(31, 43, 47, 0.14);
  display: grid;
  gap: 1rem;
}

.prototype__status {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(47, 109, 74, 0.2);
  border-radius: 999px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 16px rgba(31, 43, 47, 0.12);
}

.prototype__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prototype__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 14px 0 0 rgba(47, 109, 74, 0.55), 28px 0 0 rgba(47, 109, 74, 0.25);
}

.prototype__bar-title {
  margin-left: auto;
  font-weight: 700;
  color: var(--text);
  background: rgba(216, 170, 90, 0.18);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.prototype__mock {
  display: grid;
  gap: 0.75rem;
}

.prototype__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.prototype__card {
  padding: 0.75rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(60, 86, 111, 0.08), rgba(47, 109, 74, 0.06));
  border: 1px solid var(--border);
  box-shadow: 0 6px 14px rgba(31, 43, 47, 0.12);
}

.prototype__highlight {
  background: var(--surface);
  border: 1px dashed rgba(216, 170, 90, 0.7);
}

.prototype__line {
  height: 8px;
  border-radius: 999px;
  background: rgba(31, 43, 47, 0.12);
  margin-bottom: 0.5rem;
}

.prototype__line:last-child {
  margin-bottom: 0;
  width: 60%;
  background: rgba(47, 109, 74, 0.4);
}

.prototype__highlight .prototype__line:last-child {
  background: rgba(216, 170, 90, 0.8);
  width: 70%;
}

@media (min-width: 768px) {
  .prototype__inner {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 3rem;
    gap: 2rem;
  }

  .prototype__actions {
    justify-content: flex-start;
  }

  .prototype__preview {
    margin-left: auto;
  }
}

.offers-details__list {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cta__form {
    flex-wrap: nowrap;
  }

  .cta__form input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .cta__form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 100%;
  }

  .offers-details__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.offer-detail {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.offer-detail p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.offers-details__list {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .offers-details__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.offer-detail {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.offer-detail p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.socials svg {
  width: 28px;
  height: 28px;
  color: var(--text);
}

.card--forms {
  box-shadow: 0 12px 32px color-mix(in srgb, var(--primary) 28%, transparent);
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.link-btn:hover,
.link-btn:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 60%, transparent);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 28%, transparent);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer__links {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

.hero__visual,
.card,
input,
select,
textarea,
.btn,
.nav,
.footer {
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.theme-switcher {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.35rem 0.45rem;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 10px 24px var(--shadow);
  z-index: 12;
  backdrop-filter: blur(8px);
  align-items: center;
}

.theme-switcher.is-hidden {
  display: none;
}

.theme-switcher__restore {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  box-shadow: 0 10px 24px var(--shadow);
  cursor: pointer;
  font-size: 1.1rem;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  z-index: 11;
}

.theme-switcher__restore.is-visible {
  display: inline-flex;
}

.theme-switcher__restore:hover,
.theme-switcher__restore:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--accent) 22%, transparent);
}

/* CONTACT - PREMIUM STYLE */
.contact {
  padding: 6rem 0;
}

.socials--premium {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f5f5f5;
  transition: all 0.25s ease;
  color: #2e2e2e;
}

.social-icon:hover,
.social-icon:focus-visible {
  background: #dfe9e4;
  color: #1c3b2b;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-icon i {
  font-size: 22px;
  line-height: 1;
}

.premium-card {
  border-left: 4px solid #1c3b2b;
  padding-left: 1.5rem;
}

/* Mentions / Légales */
.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 8;
  backdrop-filter: blur(8px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.site-header__brand {
  font-weight: 800;
  color: var(--text);
}

.site-header__nav {
  display: flex;
  gap: 1rem;
  font-weight: 600;
  color: var(--muted-strong);
}

.site-header__nav a {
  position: relative;
  padding-bottom: 2px;
}

.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-header__nav a:hover::after,
.site-header__nav a:focus-visible::after {
  transform: scaleX(1);
}

.main {
  padding: 2.5rem 0 4rem;
}

.legal {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--shadow) 50%, transparent);
}

.legal h1 {
  margin-bottom: 0.5rem;
}

.legal h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal__update {
  color: var(--muted);
  margin-bottom: 1rem;
}

.legal hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.legal ul {
  padding-left: 1.1rem;
  margin: 0.5rem 0 1rem;
}

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

.legal a:hover,
.legal a:focus-visible {
  color: var(--primary-strong);
}

@media (max-width: 640px) {
  .legal {
    padding: 1.5rem;
  }

  .site-header__nav {
    gap: 0.75rem;
    font-size: 0.95rem;
  }
}

.theme-switcher::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(50%) translateY(6px);
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  background: var(--text);
  color: white;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--text) 25%, transparent);
}

.theme-switcher::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: calc(100% - 2px);
  transform: translateX(50%) translateY(6px);
  width: 10px;
  height: 10px;
  background: var(--text);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.theme-switcher:hover::after,
.theme-switcher:focus-within::after,
.theme-switcher:hover::before,
.theme-switcher:focus-within::before {
  opacity: 1;
  transform: translateX(50%) translateY(0);
}

.theme-switcher__option {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.theme-switcher__option:hover,
.theme-switcher__option:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--accent) 22%, transparent);
  border-color: color-mix(in srgb, var(--primary) 40%, transparent);
}

.theme-switcher__option.is-active {
  border-color: var(--primary);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--primary) 30%, transparent);
}

.theme-switcher__close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--muted-strong);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.theme-switcher__close:hover,
.theme-switcher__close:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
  color: var(--primary-strong);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--primary) 22%, transparent);
}

.theme-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  position: relative;
}

.theme-swatch::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--primary);
}

.theme-swatch--forest {
  background: linear-gradient(135deg, #d8aa5a, #f0d7a1);
}

.theme-swatch--forest::before {
  background: linear-gradient(135deg, #2f6d4a, #1f4f33);
}

.theme-swatch--glacier {
  background: linear-gradient(135deg, #8dd0ff, #e0f5ff);
}

.theme-swatch--glacier::before {
  background: linear-gradient(135deg, #1f6f8f, #14506b);
}

.theme-swatch--sunset {
  background: linear-gradient(135deg, #f2b35d, #ffd7a3);
}

.theme-swatch--sunset::before {
  background: linear-gradient(135deg, #d45d24, #a43f10);
}

@media (max-width: 640px) {
  .theme-switcher {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*# sourceMappingURL=styles.css.map */
