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

  :root {
    --green-deep:   #0F3D2E;
    --green-mid:    #1A5C42;
    --green-vivid:  #2A8B5E;
    --green-light:  #3DB87A;
    --white:        #FFFFFF;
    --off-white:    #F4F7F4;
    --navy:         #0C1B2E;
    --text-dark:    #111A14;
    --text-muted:   #5A6E61;
    --ease-out:     cubic-bezier(0.22,1,0.36,1);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  body.menu-open {
    overflow: hidden;
  }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 5vw;
    height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 28px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .4s, box-shadow .4s, border-color .4s, backdrop-filter .4s;
  }
  nav.scrolled {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(10,30,20,.88);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 48px rgba(0,0,0,.25);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
  }
  .nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-width: 0;
  }
  .nav-tools {
    display: flex;
    align-items: center;
    justify-self: end;
  }
  .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    list-style: none;
    min-width: 0;
  }
  .nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,.72);
    font-size: 13.5px;
    font-weight: 500;
    position: relative;
    transition: color .25s;
    white-space: nowrap;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green-light);
    transition: width .3s var(--ease-out);
  }
  .nav-links a:hover { color: white; }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 22px;
    border: 1px solid rgba(61,184,122,.5);
    background: transparent !important;
    color: var(--green-light) !important;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600 !important;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    transition: background .25s, border-color .25s, color .25s, transform .2s !important;
  }
  .nav-cta:hover {
    background: rgba(61,184,122,.1) !important;
    border-color: rgba(61,184,122,.8);
    color: #7be0a1 !important;
    transform: translateY(-1px);
  }
  .nav-cta::after { display: none !important; }

  /* ─── HERO ─── */
  .burger {
    display: none;
    width: 44px;
    height: 44px;
    padding: 12px;
    border: 0;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 999px;
    transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
    transform-origin: center;
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 999;
    background: rgba(8,8,14,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: right .4s var(--ease-out);
    overflow: hidden;
  }
  .mobile-menu.open {
    right: 0;
  }
  .mobile-menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 112px 8vw 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-menu a {
    text-decoration: none;
    color: white;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0;
    padding: 8px 0;
    transition: color .2s;
  }
  .mobile-menu a:hover {
    color: var(--green-light);
  }
  .mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    min-width: 220px;
    min-height: 50px;
    padding: 16px 44px;
    font-size: 17px;
    line-height: 1;
  }
  .mobile-nav-tools {
    display: none;
    margin: 16px 0 8px;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .mobile-lang-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(17,17,25,.6);
  }
  .mobile-lang-toggle-btn {
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.62);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s, color .25s, transform .2s, box-shadow .25s;
  }
  .mobile-lang-toggle-btn.active {
    background: var(--green-vivid);
    color: white;
    box-shadow: 0 12px 24px rgba(42,139,94,.24);
  }
  .mobile-lang-toggle-btn:focus-visible {
    outline: 2px solid rgba(61,184,122,.8);
    outline-offset: 2px;
  }

  .hero {
    min-height: max(700px, 100vh);
    position: relative; overflow: hidden;
    display: flex;
    align-items: stretch;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=85');
    background-size: cover; background-position: center 30%;
    transform: scale(1.12);
    will-change: transform;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg,
      rgba(10,30,20,.85) 0%,
      rgba(15,61,46,.65) 55%,
      rgba(12,27,46,.5) 100%);
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    width: min(1340px, 100%);
    margin: 0 auto;
    padding: clamp(128px, 14vh, 168px) 8vw clamp(96px, 11vh, 124px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 430px);
    column-gap: clamp(56px, 6vw, 112px);
    align-items: center;
  }
  .hero-content {
    position: relative;
    min-width: 0;
    max-width: 620px;
    padding: 0;
  }
  .hero-eyebrow {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 28px;
    opacity: 0; animation: fadeUp .8s .3s var(--ease-out) forwards;
  }
  .hero-eyebrow::before {
    content: ''; width: 40px; height: 1px; background: var(--green-light);
  }
  .hero-eyebrow span {
    font-size: 11px; font-weight: 500; letter-spacing: .22em;
    text-transform: uppercase; color: var(--green-light);
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(64px, 7.3vw, 112px);
    font-weight: 300; line-height: .96;
    letter-spacing: -.04em;
    color: white;
    opacity: 0; animation: fadeUp .9s .5s var(--ease-out) forwards;
  }
  .hero h1 em { font-style: italic; color: var(--green-light); }
  .hero-desc {
    margin-top: 30px;
    max-width: 33ch;
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 300;
    line-height: 1.82;
    color: rgba(255,255,255,.78);
    opacity: 0; animation: fadeUp .9s .7s var(--ease-out) forwards;
  }
  .hero-actions {
    margin-top: 44px;
    display: flex;
    gap: 20px 24px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0; animation: fadeUp .9s .9s var(--ease-out) forwards;
  }
  .btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--green-vivid);
    color: white; text-decoration: none;
    font-size: 12px; font-weight: 600; letter-spacing: .14em;
    text-transform: uppercase; border-radius: 3px;
    transition: background .25s, transform .2s, box-shadow .25s;
  }
  .btn-primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(42,139,94,.45);
  }
  .btn-ghost {
    color: rgba(255,255,255,.78); text-decoration: none;
    font-size: 12px; font-weight: 500; letter-spacing: .12em;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 10px;
    transition: color .25s;
  }
  .btn-ghost::after {
    content: '→'; font-size: 17px;
    transition: transform .25s var(--ease-out);
  }
  .btn-ghost:hover { color: white; }
  .btn-ghost:hover::after { transform: translateX(6px); }
  .hero-pricing-slider {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-self: center;
    justify-self: end;
    padding: 18px 0 0 38px;
    background: transparent;
    opacity: 1;
  }
  .hero-pricing-slider::before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: 24px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61,184,122,.16) 0%, rgba(61,184,122,0) 72%);
    filter: blur(42px);
    pointer-events: none;
    z-index: -1;
  }
  .hero-pricing-slider::after {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 58px;
    width: 1px;
    background: linear-gradient(180deg, rgba(61,184,122,.82), rgba(255,255,255,.14) 34%, rgba(255,255,255,0) 100%);
    pointer-events: none;
  }
  .hero-pricing-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .hero-pricing-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(255,255,255,.54);
  }
  .hero-pricing-count {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.46);
  }
  .hero-pricing-stage {
    position: relative;
    min-height: 312px;
  }
  .hero-price-card {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 24px;
    opacity: 0;
    transform: translateY(30px) scale(.97);
    filter: blur(10px);
    pointer-events: none;
    transition:
      opacity .82s var(--ease-out),
      transform .82s var(--ease-out),
      filter .82s var(--ease-out);
  }
  .hero-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 88px;
    height: 1px;
    background: linear-gradient(90deg, rgba(61,184,122,.85), rgba(61,184,122,0));
  }
  .hero-price-card.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  .hero-price-name {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 16px;
  }
  .hero-price-figure {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero-price-row {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    flex-wrap: nowrap;
  }
  .hero-price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(92px, 9vw, 132px);
    font-weight: 600;
    line-height: .84;
    color: white;
    letter-spacing: -.04em;
  }
  .hero-price-value.is-word {
    font-size: clamp(44px, 4.7vw, 74px);
    line-height: .96;
  }
  .hero-price-currency {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: rgba(255,255,255,.42);
  }
  .hero-price-unit {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.62);
    line-height: 1;
    padding-bottom: 12px;
    white-space: nowrap;
  }
  .hero-price-unit-note {
    margin-top: 14px;
    padding-bottom: 0;
  }
  .hero-price-copy {
    margin-top: 22px;
    max-width: 340px;
    font-size: 15px;
    line-height: 1.72;
    color: rgba(255,255,255,.78);
  }
  .hero-price-meta {
    margin-top: 10px;
    max-width: 330px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.46);
  }
  .hero-pricing-progress {
    position: relative;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.14);
    overflow: hidden;
  }
  .hero-pricing-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(61,184,122,.95), rgba(61,184,122,.15));
    transform: scaleX(0);
    transform-origin: left center;
  }
  .hero-pricing-dots {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-pricing-dots button {
    width: 34px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    cursor: pointer;
    transition: background .28s, transform .28s, box-shadow .28s, width .28s;
  }
  .hero-pricing-dots button:hover {
    background: rgba(255,255,255,.24);
  }
  .hero-pricing-dots button.is-active {
    width: 54px;
    background: var(--green-light);
    box-shadow: 0 12px 24px rgba(61,184,122,.22);
  }
  .hero-pricing-dots button:focus-visible {
    outline: 2px solid rgba(61,184,122,.85);
    outline-offset: 2px;
  }
  .hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
    opacity: 0; animation: fadeIn 1s 1.4s forwards;
  }
  .hero-scroll span {
    font-size: 9px; letter-spacing: .22em; color: rgba(255,255,255,.4); text-transform: uppercase;
  }
  .scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  /* ─── MISSION ─── */
  .mission {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 92vh;
  }
  .mission-image {
    position: relative; overflow: hidden;
  }
  .mission-image img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 7s ease;
  }
  .mission-image:hover img { transform: scale(1.04); }
  .mission-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 65%, var(--off-white));
  }
  .mission-content {
    background: var(--off-white);
    padding: 110px 7vw 110px 6vw;
    display: flex; flex-direction: column; justify-content: center;
  }
  .section-label {
    font-size: 11px; font-weight: 500; letter-spacing: .22em;
    text-transform: uppercase; color: var(--green-vivid);
    display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
  }
  .section-label::before {
    content: ''; width: 28px; height: 1px; background: var(--green-vivid);
  }
  .section-label.light { color: var(--green-light); }
  .section-label.light::before { background: var(--green-light); }
  .mission-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 3.8vw, 58px);
    font-weight: 300; line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 22px;
  }
  .mission-content h2 strong { font-weight: 600; color: var(--green-mid); }
  .mission-desc {
    font-size: 16px; line-height: 1.78; color: var(--text-muted);
    margin-bottom: 52px; max-width: 460px;
  }
  .mission-pillars {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .pillar {
    padding: 26px 22px;
    border: 1px solid rgba(42,139,94,.12);
    border-radius: 2px;
    background: white;
    position: relative; overflow: hidden;
    transition: box-shadow .3s, transform .3s;
  }
  .pillar::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--green-vivid);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s var(--ease-out);
  }
  .pillar:hover { box-shadow: 0 12px 36px rgba(0,0,0,.07); transform: translateY(-3px); }
  .pillar:hover::before { transform: scaleX(1); }
  .pillar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px; font-weight: 300; color: var(--green-vivid);
    opacity: .35; margin-bottom: 10px; line-height: 1;
  }
  .pillar p { font-size: 13.5px; line-height: 1.65; color: var(--text-muted); }

  /* ─── PARALLAX BANNER ─── */
  .parallax-banner {
    height: 460px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .pbg {
    position: absolute; inset: -20%;
    background-size: cover; background-position: center;
    background-attachment: fixed;
  }
  .poverlay { position: absolute; inset: 0; }
  .pcontent {
    position: relative; z-index: 2;
    text-align: center; padding: 0 5vw;
  }
  .pcontent h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 300; color: white; line-height: 1.12;
  }
  .pcontent h3 em { font-style: italic; color: var(--green-light); }

  /* ─── PRO SOLUTIONS ─── */
  .pro-solutions {
    padding: 120px 7vw;
    background: var(--navy);
  }
  .pro-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 72px; gap: 40px;
  }
  .pro-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300; color: white; line-height: 1.1;
    max-width: 460px;
  }
  .pro-header h2 em { font-style: italic; color: var(--green-light); }
  .pro-header p {
    max-width: 300px; font-size: 14px; line-height: 1.75;
    color: rgba(255,255,255,.45); text-align: right;
  }
  .pro-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
  .pro-card {
    position: relative; height: 400px; overflow: hidden;
    cursor: pointer;
  }
  .pro-card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .7s var(--ease-out), filter .5s;
    filter: brightness(.5) saturate(.7);
  }
  .pro-card:hover img {
    transform: scale(1.08);
    filter: brightness(.38) saturate(1.1);
  }
  .pro-card-overlay {
    position: absolute; inset: 0;
    padding: 32px;
    display: flex; flex-direction: column; justify-content: flex-end;
    background: linear-gradient(to top, rgba(5,20,12,.92) 0%, rgba(0,0,0,0) 55%);
    transition: background .4s;
  }
  .pro-card:hover .pro-card-overlay {
    background: linear-gradient(to top, rgba(5,30,18,.96) 0%, rgba(0,0,0,.25) 100%);
  }
  .pro-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    transition: border-color .3s, background .3s;
  }
  .pro-card:hover .pro-icon {
    border-color: var(--green-light);
    background: rgba(42,139,94,.2);
  }
  .pro-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 1.5; }
  .pro-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px; font-weight: 600; color: white; margin-bottom: 10px;
  }
  .pro-card-desc {
    font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.62);
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .5s var(--ease-out), opacity .4s;
  }
  .pro-card:hover .pro-card-desc { max-height: 80px; opacity: 1; }
  .pro-card-arrow {
    position: absolute; top: 26px; right: 26px;
    width: 34px; height: 34px;
    background: var(--green-vivid); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(10px);
    transition: opacity .3s, transform .3s;
  }
  .pro-card-arrow svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; }
  .pro-card:hover .pro-card-arrow { opacity: 1; transform: translateY(0); }

  /* ─── FORMULE ─── */
  .formule-section {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 85vh;
  }
  .formule-image-side {
    position: relative; overflow: hidden;
    background: var(--green-deep);
  }
  .formule-image-side img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    opacity: .42;
    transition: transform 6s ease;
  }
  .formule-image-side:hover img { transform: scale(1.04); }
  .formule-image-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 60px 50px; text-align: center;
  }
  .big-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 130px; font-weight: 700; line-height: .9;
    color: white;
  }
  .big-price sup { font-size: 42px; vertical-align: super; color: var(--green-light); }
  .big-label {
    margin-top: 10px; font-size: 12px; letter-spacing: .28em;
    text-transform: uppercase; color: rgba(255,255,255,.55);
  }
  .formule-divider {
    width: 50px; height: 1px; background: rgba(255,255,255,.2);
    margin: 28px auto;
  }
  .formule-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-style: italic; font-weight: 300;
    color: var(--green-light); line-height: 1.4;
  }
  .formule-content-side {
    background: var(--green-deep);
    padding: 80px 6vw;
    display: flex; flex-direction: column; justify-content: center;
  }
  .formule-content-side h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 3.2vw, 50px);
    font-weight: 300; color: white; line-height: 1.1;
    margin-bottom: 10px;
  }
  .formule-sub {
    font-size: 14px; color: rgba(255,255,255,.5);
    line-height: 1.7; margin-bottom: 42px; max-width: 380px;
  }
  .formule-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
  .formule-list li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.5;
  }
  .formule-list li::before {
    content: '';
    flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px;
    border: 1.5px solid var(--green-light); border-radius: 50%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10l3.5 3.5L15 7' stroke='%233DB87A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  }
  .formule-cta-wrap { margin-top: 44px; }

  /* ─── PUBLIC SOLUTIONS ─── */
  .public-solutions { padding: 120px 7vw; background: var(--off-white); }
  .pub-header { margin-bottom: 72px; }
  .pub-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300; color: var(--text-dark);
    max-width: 560px; line-height: 1.1;
  }
  .pub-header h2 em { font-style: italic; color: var(--green-mid); }
  .pub-header p {
    margin-top: 18px; max-width: 480px;
    font-size: 16px; line-height: 1.75; color: var(--text-muted);
  }
  .pub-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
  .pub-card {
    background: white; overflow: hidden;
    transition: box-shadow .35s, transform .35s;
  }
  .pub-card:hover {
    box-shadow: 0 20px 56px rgba(0,0,0,.1);
    transform: translateY(-4px);
    z-index: 1;
    position: relative;
  }
  .pub-card-img { height: 210px; overflow: hidden; }
  .pub-card-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .6s var(--ease-out);
    filter: brightness(.85) saturate(.85);
  }
  .pub-card:hover .pub-card-img img {
    transform: scale(1.07);
    filter: brightness(.75) saturate(1.1);
  }
  .pub-card-body { padding: 30px 26px; }
  .pub-card-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600; color: var(--text-dark);
    margin-bottom: 10px;
  }
  .pub-card-body p { font-size: 13.5px; line-height: 1.7; color: var(--text-muted); }
  .pub-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 18px; font-size: 11px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase; color: var(--green-vivid);
    text-decoration: none; transition: gap .2s;
  }
  .pub-card-link:hover { gap: 10px; }
  .pub-card-link::after { content: '→'; }

  /* ─── CTA ─── */
  .cta-section {
    position: relative; overflow: hidden;
    padding: 150px 10vw;
    text-align: center;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1800&q=85');
    background-size: cover; background-position: center;
    background-attachment: fixed;
    filter: brightness(.28) saturate(.6);
  }
  .cta-section::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg,
      rgba(15,61,46,.7) 0%,
      rgba(12,27,46,.55) 100%);
  }
  .cta-inner { position: relative; z-index: 2; }
  .cta-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 70px);
    font-weight: 300; color: white; line-height: 1.1;
    margin-bottom: 24px;
  }
  .cta-inner h2 em { font-style: italic; color: var(--green-light); }
  .cta-inner p {
    font-size: 17px; line-height: 1.75;
    color: rgba(255,255,255,.68);
    max-width: 560px; margin: 0 auto 52px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy);
    padding: 80px 7vw 40px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px; padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .footer-brand .footer-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: white; margin-bottom: 18px;
  }
  .footer-brand p {
    font-size: 13.5px; line-height: 1.78;
    color: rgba(255,255,255,.4); max-width: 260px;
  }
  .footer-socials {
    display: flex; gap: 10px; margin-top: 22px;
  }
  .footer-socials a {
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.45);
    text-decoration: none; font-size: 12px; font-weight: 600;
    transition: border-color .2s, color .2s, background .2s;
  }
  .footer-socials a:hover {
    border-color: var(--green-light);
    color: var(--green-light);
    background: rgba(61,184,122,.06);
  }
  .footer-col h5 {
    font-size: 10px; font-weight: 600; letter-spacing: .2em;
    text-transform: uppercase; color: var(--green-light);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
  .footer-col ul li a {
    text-decoration: none; font-size: 13.5px; color: rgba(255,255,255,.45);
    transition: color .2s;
  }
  .footer-col ul li a:hover { color: white; }
  .footer-contact p {
    font-size: 13.5px; line-height: 1.85; color: rgba(255,255,255,.45);
  }
  .footer-contact strong { color: rgba(255,255,255,.75); font-weight: 500; }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 32px; font-size: 12px; color: rgba(255,255,255,.28);
  }
  .footer-bottom a { color: rgba(255,255,255,.28); text-decoration: none; transition: color .2s; }
  .footer-bottom a:hover { color: rgba(255,255,255,.6); }

  /* ─── GREEN DIVIDER ─── */
  .green-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--green-deep), var(--green-light), var(--green-deep));
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: .45; }
    50% { opacity: 1; }
  }

  .reveal {
    opacity: 0; transform: translateY(36px);
    transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  }
  .reveal.visible { opacity: 1; transform: none; }
  .d1 { transition-delay: .1s; }
  .d2 { transition-delay: .2s; }
  .d3 { transition-delay: .3s; }
  .d4 { transition-delay: .4s; }
  .d5 { transition-delay: .5s; }

  body {
    cursor: none;
  }

  #cur {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-light);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transform: translate(-50%, -50%);
  }

  #cur-r {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(61,184,122,.45);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .25s var(--ease-out), height .25s var(--ease-out), border-color .25s;
  }

  #cur-r.big {
    width: 64px;
    height: 64px;
    border-color: rgba(61,184,122,.65);
  }

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

  .nav-tools {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-logo {
    gap: 0;
    flex-shrink: 0;
  }

  .nav-logo img {
    display: block;
    height: 42px;
    width: auto;
  }

  /* ─── UNIVERSE SWITCH ─── */
  .univ-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
    background: rgba(17,17,25,.5);
    backdrop-filter: blur(10px);
    margin-left: 14px;
  }
  .univ-switch a {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 100px;
    transition: all .2s;
    white-space: nowrap;
  }
  .univ-switch a:hover {
    color: #fff;
    background: rgba(61,184,122,.12);
  }
  .univ-switch .sep {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.15);
  }
  .univ-switch a.active {
    background: rgba(61,184,122,.2);
    color: var(--green-light);
  }

  .lang-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(17,17,25,.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .lang-toggle-btn {
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.62);
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s, color .25s, transform .2s, box-shadow .25s;
    min-width: 32px;
  }

  .lang-toggle-btn:hover {
    color: white;
  }

  .lang-toggle-btn.active {
    background: var(--green-vivid);
    color: white;
    box-shadow: 0 12px 24px rgba(42,139,94,.24);
  }

  .lang-toggle-btn:focus-visible {
    outline: 2px solid rgba(61,184,122,.8);
    outline-offset: 2px;
  }

  .footer-brand .footer-logo {
    gap: 0;
  }

  .footer-brand .footer-logo img {
    display: block;
    height: 42px;
    width: auto;
  }

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

  .banner-pro-bg {
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1800&q=75');
  }

  .banner-pro-overlay {
    background: linear-gradient(135deg, rgba(10,30,20,.80), rgba(12,27,46,.68));
  }

  .banner-public-bg {
    background-image: url('https://images.unsplash.com/photo-1559526324-4b87b5e36e44?w=1800&q=75');
  }

  .banner-public-overlay {
    background: linear-gradient(135deg, rgba(10,40,25,.82), rgba(12,27,46,.7));
  }

  .section-label-centered {
    justify-content: center;
  }

  @media (max-width: 1180px) {
    .nav-center {
      gap: 18px;
    }

    .nav-links {
      gap: 18px;
    }

    .nav-links a {
      font-size: 12px;
    }

    .hero-inner {
      grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
      column-gap: clamp(40px, 5vw, 72px);
      padding-left: 7vw;
      padding-right: 7vw;
    }

    .hero-content {
      max-width: 560px;
    }
  }

  @media (max-width: 960px) {
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: auto;
      min-height: 72px;
      padding: 14px 5vw;
    }

    .nav-center,
    .nav-tools {
      display: none;
    }

    .burger {
      display: inline-flex;
      margin-left: auto;
      flex-shrink: 0;
    }

    .nav-logo img,
    .footer-brand .footer-logo img {
      height: 36px;
    }

    .mobile-nav-tools {
      display: flex;
    }

    .hero-scroll {
      display: none;
    }

    .mission {
      min-height: auto;
    }

    .mission-content {
      padding: 72px 6vw;
    }

    .mission-pillars {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .pillar-wide {
      grid-column: auto;
    }

    .parallax-banner {
      height: 340px;
    }

    .pbg,
    .cta-bg {
      background-attachment: scroll;
    }

    .pro-solutions,
    .public-solutions {
      padding: 96px 6vw;
    }

    .pro-card {
      height: 360px;
    }

    .pro-card-overlay {
      padding: 28px;
      background: linear-gradient(to top, rgba(5,20,12,.94) 0%, rgba(0,0,0,.12) 72%);
    }

    .pro-card-desc {
      max-height: 120px;
      opacity: 1;
    }

    .pro-card-arrow {
      opacity: 1;
      transform: none;
    }

    .formule-section {
      min-height: auto;
    }

    .formule-image-side {
      min-height: 360px;
    }

    .formule-content-side {
      padding: 72px 6vw;
    }

    .cta-section {
      padding: 112px 6vw;
    }

    .footer-brand p,
    .footer-contact p {
      max-width: none;
    }
  }

  @media (max-width: 920px) {
    nav {
      height: auto;
      min-height: 72px;
      padding: 14px 5vw;
    }

    .nav-logo img,
    .footer-brand .footer-logo img {
      height: 36px;
    }

    .hero {
      min-height: 780px;
      padding-top: 0;
      align-items: stretch;
    }

    .hero-inner {
      grid-template-columns: 1fr;
      row-gap: 42px;
      align-items: flex-start;
      padding: 110px 6vw 92px;
    }

    .hero-content {
      max-width: 680px;
    }

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

    .hero-pricing-slider {
      width: min(100%, 540px);
      min-height: 340px;
      justify-self: start;
      align-self: flex-start;
      padding-left: 28px;
    }

    .hero-pricing-slider::before {
      right: -12px;
      bottom: 14px;
      width: 220px;
      height: 220px;
    }

    .hero-pricing-stage {
      min-height: 268px;
    }

    .mission,
    .formule-section,
    .pro-grid,
    .pub-grid,
    .footer-grid {
      grid-template-columns: 1fr;
    }

    .mission-image {
      min-height: 320px;
    }

    .mission-image::after {
      background: linear-gradient(to bottom, transparent 60%, var(--off-white));
    }

    .pro-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .pro-header p {
      max-width: none;
      text-align: left;
    }

    .footer-grid {
      gap: 36px;
    }

    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  }

  @media (max-width: 640px) {
    nav {
      gap: 16px;
    }

    .mobile-menu-panel {
      gap: 20px;
      padding: 104px 6vw 40px;
    }

    .mobile-menu a {
      font-size: 20px;
    }

    .mobile-menu-cta {
      font-size: 16px;
      min-width: 208px;
      min-height: 48px;
      padding: 15px 40px;
    }

    .hero-inner,
    .cta-section,
    .mission-content,
    .pro-solutions,
    .public-solutions,
    .formule-content-side,
    .formule-image-content {
      padding-left: 6vw;
      padding-right: 6vw;
    }

    .hero-pricing-slider {
      min-height: 330px;
      padding-left: 24px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
      width: 100%;
      justify-content: center;
    }

    .hero-price-copy,
    .hero-price-meta {
      max-width: none;
    }

    .hero h1 {
      font-size: clamp(54px, 15vw, 76px);
    }

    .hero-desc {
      max-width: 28ch;
    }

    .hero-price-value {
      font-size: clamp(76px, 24vw, 104px);
    }

    .hero-price-value.is-word {
      font-size: clamp(40px, 12vw, 58px);
    }

    .hero-price-row {
      gap: 10px;
    }

    .hero-price-unit {
      padding-bottom: 10px;
      font-size: 10px;
    }

    .hero-price-unit-note {
      padding-bottom: 0;
      font-size: 11px;
    }

    .big-price {
      font-size: 82px;
    }

    .big-price sup {
      font-size: 30px;
    }

    .formule-image-side {
      min-height: 320px;
    }

    .formule-image-content {
      padding-top: 44px;
      padding-bottom: 44px;
    }

    .formule-tagline {
      font-size: 18px;
    }

    .formule-list li {
      gap: 12px;
      font-size: 14px;
    }

    .parallax-banner {
      height: 280px;
    }

    .pcontent h3 {
      font-size: clamp(28px, 10vw, 40px);
    }

    .pro-card {
      height: 320px;
    }

    .pro-card-overlay,
    .pub-card-body {
      padding: 24px 20px;
    }

    .pro-card h4,
    .pub-card-body h4 {
      font-size: 19px;
    }

    .pro-card-desc {
      font-size: 12.5px;
      line-height: 1.6;
    }

    .cta-inner p {
      font-size: 15px;
      margin-bottom: 38px;
    }

    footer {
      padding: 64px 6vw 32px;
    }
  }

  @media (pointer: coarse), (max-width: 920px) {
    body {
      cursor: auto;
    }

    #cur,
    #cur-r {
      display: none;
    }
  }
