  :root {
    --lime: #9edd43;
    --teal: #007491;
    --teal-dark: #005e75;
    --teal-light: #0088aa;
    --white: #ffffff;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

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

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

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--teal);
    overflow-x: hidden;
  }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 70px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,116,145,0.12);
    transition: background 0.3s, box-shadow 0.3s;
  }

  .nav-logo {
    display: flex; align-items: center;
    height: 72px;
  }

  .nav-logo img,
  .nav-logo svg {
    height: 48px;
    width: auto;
    max-width: 150px;
    display: block;
  }

  .nav-links {
    display: flex; gap: 2rem; list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #007491;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--teal-dark); }

  .nav-cta {
    background: var(--lime);
    color: var(--teal-dark) !important;
    padding: 0.45rem 1.1rem;
    border-radius: 4px;
    font-weight: 700 !important;
    transition: opacity 0.2s !important;
  }

  .nav-cta:hover { opacity: 0.88 !important; color: var(--teal-dark) !important; }

  .nav-toggle {
    display: none;
    background: none; border: none;
    cursor: pointer; color: var(--teal);
    padding: 4px;
  }


  #hero {
    background: var(--teal);
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1600&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
  }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    background: var(--teal);
    display: flex; align-items: center; justify-content: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    background: var(--lime);
  }

  .hero-bg-shape.s1 { width: 600px; height: 600px; top: -150px; right: -150px; }
  .hero-bg-shape.s2 { width: 300px; height: 300px; bottom: 50px; left: -80px; }

  .hero-inner {
    max-width: 880px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.8s ease both;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(158,221,67,0.15);
    border: 1px solid rgba(158,221,67,0.4);
    color: var(--lime);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.8rem;
  }

  .hero-badge svg { width: 13px; height: 13px; }

  h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.4rem;
  }

  h1 span { color: var(--lime); }

  .hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
  }

  .hero-actions {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--lime);
    color: var(--teal-dark);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex; align-items: center; gap: 0.5rem;
    letter-spacing: 0.02em;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(158,221,67,0.35);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }

  .btn-outline:hover { border-color: var(--lime); color: var(--lime); }

  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
  }

  .hero-scroll svg { width: 18px; height: 18px; }

  /* ─── SECTION SHARED ─── */
  section { padding: 90px 5%; }

  .section-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 0.6rem;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  }

  .section-label::before {
    content: '';
    display: block; width: 28px; height: 2px;
    background: var(--lime);
  }

  h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-align: center;
  }

  .section-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.75;
    max-width: 560px;
    margin: 0 auto 3rem;
    text-align: center;
  }

  /* ─── SERVICES ─── */
  #services { background: var(--white); }

  #services h2 { color: var(--teal); }

  .services-header { max-width: 1100px; margin: 0 auto; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .service-card {
    background: var(--white);
    border: 1.5px solid #e8f4f8;
    border-radius: 16px;
    padding: 2.2rem;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,116,145,0.12);
    border-color: rgba(0,116,145,0.2);
  }

  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 52px; height: 52px;
    background: rgba(0,116,145,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.3rem;
    color: var(--teal);
    transition: background 0.25s;
  }

  .service-card:hover .service-icon {
    background: var(--teal);
    color: var(--lime);
  }

  .service-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.7rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  /* Long French title needs slightly tighter typography to stay on one line */
  .service-card.svc-long h3 {
    font-size: 0.98rem;
    letter-spacing: -0.025em;
  }

  .service-card p {
    font-size: 0.93rem;
    line-height: 1.65;
    color: #4a7080;
  }


  .services-photo {
    max-width: 800px;
    width: 100%;
    margin: 0 auto 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1035 / 607;
    background: #f5f7f9;
    box-shadow: 0 8px 28px rgba(0,116,145,0.10);
  }
  .services-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Service card illustration (inline SVG) */
  .service-illustration {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 1.4rem;
  }
  .service-illustration svg {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ─── HOW IT WORKS ─── */
  #how { background: #f4fafb; }

  .how-inner { max-width: 1000px; margin: 0 auto; }

  #how h2, #how .section-label { color: var(--teal); }

  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 4rem;
  }

  /* Connecting line passing through the icon row, behind the step cards */
  .steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 16.67%;
    right: 16.67%;
    height: 2px;
    background: linear-gradient(90deg,
      rgba(0,116,145,0) 0%,
      rgba(0,116,145,0.45) 15%,
      rgba(158,221,67,0.6) 50%,
      rgba(0,116,145,0.45) 85%,
      rgba(0,116,145,0) 100%);
    z-index: 0;
  }

  .step {
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    padding: 0 0.5rem;
    position: relative; z-index: 1;
    background: transparent;
    border: none;
  }

  /* Icon container — circular white background to mask the connecting line where icons sit */
  .step-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid rgba(0,116,145,0.15);
    box-shadow: 0 4px 14px rgba(0,116,145,0.06);
  }

  .step-icon svg {
    width: 60px;
    height: 60px;
    display: block;
  }

  .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--teal-dark);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  @media (max-width: 760px) {
    .steps { grid-template-columns: 1fr; gap: 1.5rem; }
    .steps::before { display: none; }
  }

  .step-num {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--lime);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.3rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal);
    box-shadow: 0 4px 20px rgba(0,116,145,0.15);
  }

  .step-icon-wrap {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--teal);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.3rem;
    color: var(--lime);
    box-shadow: 0 4px 20px rgba(0,116,145,0.2);
  }

  .step h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.6rem;
  }

  .step p {
    font-size: 0.88rem;
    color: #4a7080;
    line-height: 1.6;
  }


  .how-photo {
    max-width: 800px;
    width: 100%;
    margin: 2.5rem auto 0;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1045 / 607;
    background: #f5f7f9;
    box-shadow: 0 8px 28px rgba(0,116,145,0.10);
  }
  .how-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Step illustration (inline SVG) */
  .step-illustration {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
  }
  .step-illustration svg {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ─── WHY NAYLEAD ─── */
  #why { background: var(--white); }

  #why h2 { color: var(--teal); }

  .why-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 0;
  }

  .why-card {
    background: var(--teal);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s;
  }

  .why-card::after {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(158,221,67,0.1);
  }

  .why-card:hover { transform: translateY(-4px); }

  .why-card-icon {
    color: var(--lime);
    margin-bottom: 1rem;
  }

  .why-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
  }

  .why-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.72);
  }

  /* ─── TESTIMONIALS ─── */
  #testimonials { background: #f4fafb; }

  /* Section title — explicit teal, !important to override any inline styles */
  #testimonials h2 { color: #007491 !important; }

  /* Section label ("Client Stories") — explicit teal */
  #testimonials .section-label { color: #007491 !important; }

  .testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .testi-card {
    background: #ffffff;
    border: 1px solid rgba(0,116,145,0.12);
    border-radius: 16px;
    padding: 2rem;
    transition: background 0.25s, box-shadow 0.25s, border-color 0.25s;
  }

  .testi-card:hover {
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0,116,145,0.08);
    border-color: rgba(0,116,145,0.2);
  }

  /* Star ratings — explicit lime */
  #testimonials .testi-stars {
    color: #9edd43 !important;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
  }

  /* Quote text — explicit dark gray */
  #testimonials .testi-card blockquote,
  #testimonials .testi-card blockquote * {
    color: #333333 !important;
    font-style: italic;
  }
  #testimonials .testi-card blockquote {
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  /* Any <p> inside a testimonial card (defensive — covers future markup) */
  #testimonials .testi-card p {
    color: #333333 !important;
  }

  .testi-author {
    display: flex; align-items: center; gap: 0.8rem;
  }

  .testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: #9edd43;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: #005e75;
  }

  /* Real client logos — small, no background box, preserves aspect ratio */
  .testi-logo {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    background: transparent;
    flex-shrink: 0;
  }

  /* Client name — explicit teal */
  #testimonials .testi-name strong {
    display: block;
    color: #007491 !important;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
  }

  /* Client role / sub-line — explicit dark gray for readability */
  #testimonials .testi-name span {
    font-size: 0.78rem;
    color: #333333 !important;
  }


  /* ─── FAQ ─── */
  #faq { background: #f4fafb; }

  #faq h2 { color: var(--teal); }
  #faq .section-label { color: var(--teal); }
  #faq .section-intro { color: #4a7080; }

  .faq-inner {
    max-width: 750px;
    margin: 0 auto;
  }

  .faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

  .faq-item {
    background: var(--white);
    border: 1.5px solid #e8f4f8;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
  }

  .faq-item.open { border-color: var(--teal); }

  .faq-q {
    width: 100%; background: none; border: none;
    padding: 1.2rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--teal);
    text-align: left;
    transition: color 0.2s;
  }

  .faq-q svg {
    min-width: 20px;
    transition: transform 0.3s;
    color: var(--lime);
  }

  .faq-item.open .faq-q svg { transform: rotate(45deg); }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4a7080;
    padding: 0 1.5rem;
  }

  .faq-item.open .faq-a {
    max-height: 600px;
    padding: 0 1.5rem 1.2rem;
  }

  /* ─── CONTACT ─── */
  #contact {
    background: var(--teal);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  #contact::before, #contact::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(158,221,67,0.06);
  }

  #contact::before { width: 400px; height: 400px; top: -100px; left: -100px; }
  #contact::after { width: 250px; height: 250px; bottom: -80px; right: -60px; }

  .contact-inner {
    max-width: 650px;
    margin: 0 auto;
    position: relative; z-index: 1;
  }

  #contact h2 { color: var(--white); margin-bottom: 1rem; }
  #contact .section-intro { color: rgba(255,255,255,0.7); margin: 0 auto 2.5rem; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--teal-dark);
    padding: 2rem 5%;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
  }

  footer strong { color: rgba(255,255,255,0.7); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  html.js .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── MOBILE ─── */
  @media (max-width: 768px) {
    nav {
      padding: 0 4%;
      gap: 0.5rem;
    }

    .nav-logo {
      flex: 1;
      min-width: 0;
      height: auto;
    }

    .nav-logo svg {
      height: 38px;
      max-width: 120px;
    }

    .nav-links {
      display: none;
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      background: rgba(255,255,255,0.98);
      flex-direction: column;
      padding: 1.5rem 5%;
      gap: 1.2rem;
      border-top: 1px solid rgba(0,116,145,0.12);
      box-shadow: 0 8px 16px rgba(0,116,145,0.08);
    }

    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .nav-cta { display: block; text-align: center; margin-top: 0.5rem; }

    .lang-toggle {
      margin-right: 0;
      flex-shrink: 0;
    }

    .nav-toggle {
      flex-shrink: 0;
    }

    #hero {
      min-height: 100svh;
      padding: 96px 6% 64px;
    }

    .hero-bg-shape.s1 {
      width: 260px;
      height: 260px;
      top: -80px;
      right: -80px;
    }

    .hero-bg-shape.s2 {
      width: 150px;
      height: 150px;
      bottom: 30px;
      left: -50px;
    }

    h1 {
      font-size: clamp(1.75rem, 8vw, 2.4rem);
    }

    .hero-sub {
      font-size: 0.95rem;
      margin-bottom: 2rem;
    }

    .hero-scroll {
      display: none;
    }

    section {
      padding: 56px 6%;
    }

    h2 {
      font-size: clamp(1.55rem, 6vw, 2rem);
    }

    .section-intro {
      font-size: 0.95rem;
      margin-bottom: 2rem;
    }

    .services-grid,
    .testi-grid {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    .service-card {
      padding: 1.6rem;
    }

    .service-card h3,
    .service-card.svc-long h3 {
      white-space: normal;
      font-size: 1rem;
    }

    .services-photo,
    .how-photo {
      margin-bottom: 1.5rem;
      border-radius: 12px;
    }

    .steps {
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 2.5rem;
    }

    .steps::before {
      display: none;
    }

    .step-icon {
      width: 84px;
      height: 84px;
    }

    .step-icon svg {
      width: 50px;
      height: 50px;
    }

    .why-grid {
      grid-template-columns: 1fr;
    }

    .why-card {
      padding: 1.6rem 1.4rem;
    }

    .testi-card {
      padding: 1.5rem;
    }

    .testi-logo {
      width: 56px;
      height: 56px;
    }

    .faq-q {
      font-size: 0.88rem;
      padding: 1rem 1.1rem;
      gap: 0.75rem;
    }

    .faq-a {
      font-size: 0.86rem;
      padding: 0 1.1rem;
    }

    .faq-item.open .faq-a {
      padding: 0 1.1rem 1rem;
    }

    .hero-actions {
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .btn-primary,
    .btn-outline {
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }

    .contact-cta-wrap .btn-cta-big {
      min-width: 0;
      width: 100%;
      max-width: 300px;
      padding: 1rem 1.5rem;
      font-size: 1rem;
    }

    .contact-icon-link {
      width: 52px;
      height: 52px;
      font-size: 1.4rem;
    }

    footer {
      padding: 1.5rem 6%;
      font-size: 0.78rem;
      line-height: 1.6;
    }
  }

  @media (max-width: 480px) {
    nav {
      padding: 0 3.5%;
    }

    .nav-logo svg {
      height: 34px;
      max-width: 100px;
    }

    .lang-toggle {
      font-size: 0.72rem;
      padding: 0.25rem 0.55rem;
    }

    #hero {
      padding-top: 88px;
    }

    .hero-badge {
      font-size: 0.7rem;
      padding: 0.35rem 0.8rem;
    }

    h1 {
      font-size: 1.65rem;
    }

    .section-label::before {
      width: 18px;
    }

    .service-illustration {
      max-width: 140px;
    }
  }

  .lang-toggle {
    background: rgba(0,116,145,0.06);
    border: 1.5px solid rgba(0,116,145,0.4);
    color: #007491;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    margin-right: 0.5rem;
  }
  .lang-toggle:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
  }
  /* Roles row */


  /* Tabs */


  /* Panels */


  @keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .panel-header {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1.5px solid #e0f0f5;
  }

  .panel-icon {
    width: 56px; height: 56px; min-width: 56px;
    border-radius: 14px;
    background: var(--teal);
    display: flex; align-items: center; justify-content: center;
    color: var(--lime);
    font-size: 1.5rem;
  }

  .panel-header-text h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 0.2rem;
  }

  .panel-header-text p {
    font-size: 0.85rem;
    color: #4a7080;
  }

  .panel-scenarios {
    display: flex; flex-direction: column; gap: 1rem;
  }

  .scenario {
    display: flex; gap: 0.9rem;
    background: var(--white);
    border: 1.5px solid #e8f4f8;
    border-radius: 12px;
    padding: 1.1rem 1.2rem;
    transition: border-color 0.2s;
  }

  .scenario:hover { border-color: var(--teal); }

  .scenario-dot {
    width: 10px; height: 10px; min-width: 10px;
    border-radius: 50%;
    background: var(--lime);
    margin-top: 6px;
  }

  .scenario-body strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.3rem;
  }

  .scenario-body p {
    font-size: 0.86rem;
    color: #4a7080;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
  }
  @keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .panel-header {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.5rem; padding-bottom: 1.2rem;
    border-bottom: 1.5px solid rgba(255,255,255,0.1);
  }

  .panel-icon {
    width: 56px; height: 56px; min-width: 56px;
    border-radius: 14px; background: var(--lime);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-dark); font-size: 1.5rem;
  }

  .panel-header-text h3 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 800;
    color: var(--white); margin-bottom: 0.2rem;
  }
  .panel-header-text p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

  .panel-scenarios { display: flex; flex-direction: column; gap: 1rem; }

  .scenario {
    display: flex; gap: 0.9rem;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 1.1rem 1.2rem;
    transition: border-color 0.2s;
  }
  .scenario:hover { border-color: var(--lime); }

  .scenario-dot {
    width: 10px; height: 10px; min-width: 10px;
    border-radius: 50%; background: var(--lime); margin-top: 6px;
  }

  .scenario-body strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.88rem; font-weight: 700;
    color: var(--lime); margin-bottom: 0.3rem;
  }
  .scenario-body p { font-size: 0.86rem; color: rgba(255,255,255,0.68); line-height: 1.6; }

  @media (max-width: 768px) {
  }


  .contact-cta-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 1rem 0 2rem;
  }
  .contact-main-btn {
    cursor: default;
    pointer-events: none;
  }
  .contact-icons {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
  }
  .contact-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.22);
    color: var(--lime);
    font-size: 1.55rem;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
  }
  .contact-icon-link:hover {
    transform: translateY(-2px);
    background: rgba(158,221,67,0.15);
    border-color: var(--lime);
    color: var(--lime);
    box-shadow: 0 8px 24px rgba(158,221,67,0.25);
  }
  .contact-cta-wrap .btn-cta-big {
    min-width: 260px;
    justify-content: center;
  }
  .btn-cta-big {
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
    border-radius: 8px;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 32px rgba(158,221,67,0.3);
  }
  .btn-cta-big i { font-size: 1rem; }
  @media (max-width: 768px) {
  }