/* Page-specific styles extracted from en/index.html */
:root {
      color-scheme: light;
      --ink: #0d1416;
      --ink-soft: #1f2a2f;
      --sage: #dce3dc;
      --fog: #f3f4f2;
      --moss: #0f6b5f;
      --moss-dark: #0c534a;
      --ember: #e06a3b;
      --ember-dark: #c55327;
      --sky: #a9c7d0;
      --gold: #f0c75e;
      --paper: #fbfaf7;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--paper);
      min-height: 100vh;
      font-feature-settings: "cv02", "cv03", "cv04", "cv11";
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        radial-gradient(circle at 8% 10%, rgba(15, 107, 95, 0.16), transparent 45%),
        radial-gradient(circle at 85% 5%, rgba(224, 106, 59, 0.2), transparent 40%),
        radial-gradient(circle at 60% 90%, rgba(169, 199, 208, 0.3), transparent 50%),
        linear-gradient(180deg, rgba(251, 250, 247, 0.8), rgba(243, 244, 242, 0.9));
      z-index: -2;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      background-image: radial-gradient(rgba(13, 20, 22, 0.08) 0.6px, transparent 0.6px);
      background-size: 28px 28px;
      opacity: 0.2;
      z-index: -1;
      pointer-events: none;
    }

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

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

    .surveyjs-link {
      text-decoration: underline;
      text-decoration-color: rgba(13, 20, 22, 0.25);
      text-underline-offset: 3px;
      transition: text-decoration-color 0.2s ease;
    }

    .surveyjs-link:hover {
      text-decoration-color: rgba(13, 20, 22, 0.5);
    }

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

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(15, 107, 95, 0.12);
      color: var(--moss-dark);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .pill span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--moss);
      box-shadow: 0 0 0 6px rgba(15, 107, 95, 0.15);
      animation: pulse 2.6s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(0.9); opacity: 0.8; }
      50% { transform: scale(1.1); opacity: 1; }
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: rgba(251, 250, 247, 0.9);
      border-bottom: 1px solid rgba(13, 20, 22, 0.08);
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .nav.is-hidden {
      transform: translateY(-110%);
      opacity: 0;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 0 20px;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand a {
      display: flex;
      align-items: center;
      text-decoration: none;
      transition: opacity 0.2s ease;
    }

    .brand a:hover {
      opacity: 0.85;
    }

    .brand img {
      width: 200px;
      height: auto;
      display: block;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .brand-title {
      font-family: "Plus Jakarta Sans", "Inter", sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--ink);
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .brand-sub {
      font-size: 0.8rem;
      color: rgba(13, 20, 22, 0.6);
      line-height: 1.3;
      max-width: 280px;
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      font-size: 0.95rem;
      color: rgba(13, 20, 22, 0.7);
    }

    .nav-links a {
      transition: color 0.2s ease;
    }

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

    .nav-links a.active {
      color: var(--moss-dark);
      font-weight: 600;
      border-bottom: 2px solid var(--moss);
      padding-bottom: 2px;
    }

    .nav-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }

    .nav-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: calc(1em + 8px);
    }

    .nav-badge {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 999px;
      background: linear-gradient(135deg, #ffd36a, #ff6b6b);
      color: #2b1400;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: 0 12px 28px -16px rgba(255, 107, 107, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
      overflow: hidden;
    }

    .nav-badge::before {
      content: "";
      position: absolute;
      inset: -120% auto -120% -60%;
      width: 120px;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.75), transparent);
      transform: rotate(18deg);
      animation: badge-shine 3.2s ease-in-out infinite;
    }

    .yt-badge {
      background: linear-gradient(135deg, #ffe7e7, #ff5d5d);
      color: #3a0b0b;
      box-shadow: 0 12px 28px -16px rgba(255, 93, 93, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
    }

    .yt-badge:hover {
      box-shadow: 0 16px 36px -18px rgba(255, 93, 93, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.85) inset;
    }

    .nav-badge:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 36px -18px rgba(255, 107, 107, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.85) inset;
    }

    @keyframes badge-shine {
      0%, 45% { transform: translateX(-140%) rotate(18deg); opacity: 0; }
      50% { opacity: 0.9; }
      100% { transform: translateX(220%) rotate(18deg); opacity: 0; }
    }

    .yt-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(255, 247, 247, 0.95), rgba(255, 222, 222, 0.9));
      color: #4b0f0f;
      font-weight: 600;
      border: 1px solid rgba(200, 29, 29, 0.3);
      box-shadow: 0 8px 18px -14px rgba(200, 29, 29, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    }

    .yt-link::after {
      content: "";
      position: absolute;
      inset: -120% auto -120% -50%;
      width: 90px;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
      transform: rotate(18deg);
      animation: yt-shine 4.8s ease-in-out infinite;
      opacity: 0.6;
      pointer-events: none;
    }

    .yt-link:hover {
      transform: translateY(-1px);
      color: #2c0909;
      box-shadow: 0 10px 22px -14px rgba(200, 29, 29, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    }

    .yt-link.is-footer {
      padding: 8px 16px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 120, 120, 0.18));
      color: #fff4f4;
      border: 1px solid rgba(255, 120, 120, 0.5);
      box-shadow: 0 8px 18px -16px rgba(255, 120, 120, 0.9);
    }

    .yt-link.is-footer:hover {
      color: white;
    }

    .yt-icon {
      position: relative;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff4b4b, #c81d1d);
      box-shadow: 0 4px 10px -6px rgba(200, 29, 29, 0.9);
      flex: 0 0 18px;
    }

    .yt-icon::before {
      content: "";
      position: absolute;
      left: 7px;
      top: 5px;
      width: 0;
      height: 0;
      border-left: 6px solid #fff6f6;
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent;
    }

    @keyframes yt-shine {
      0%, 55% { transform: translateX(-140%) rotate(18deg); opacity: 0; }
      60% { opacity: 0.8; }
      100% { transform: translateX(220%) rotate(18deg); opacity: 0; }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 26px;
      border-radius: 999px;
      font-weight: 600;
      border: 1px solid transparent;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .btn-primary {
      background: var(--ink);
      color: white;
      box-shadow: 0 18px 40px -26px rgba(13, 20, 22, 0.8);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background: #000;
    }

    .btn-ghost {
      border-color: rgba(13, 20, 22, 0.2);
      color: var(--ink);
      background: rgba(255, 255, 255, 0.7);
    }

    .btn-ghost:hover {
      transform: translateY(-2px);
      border-color: rgba(13, 20, 22, 0.4);
    }

    .btn-accent {
      background: #b84f25;
      color: white;
    }

    .btn-accent:hover {
      background: var(--ember-dark);
      transform: translateY(-2px);
    }

    .calendly-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 22px;
      border-radius: 999px;
      background: rgba(15, 107, 95, 0.18);
      color: var(--moss-dark);
      font-weight: 600;
      border: 1px solid rgba(15, 107, 95, 0.25);
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .calendly-link:hover {
      transform: translateY(-2px);
      background: rgba(15, 107, 95, 0.28);
      border-color: rgba(15, 107, 95, 0.4);
    }

    .hero {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      padding: 70px 0 40px;
      align-items: center;
    }

    .hero h1 {
      font-family: "Plus Jakarta Sans", "Inter", sans-serif;
      font-weight: 700;
      letter-spacing: -0.02em;
      font-size: clamp(2.6rem, 4vw, 4.2rem);
      line-height: 1.05;
      margin: 18px 0;
    }

    .hero p {
      font-size: 1.15rem;
      color: rgba(13, 20, 22, 0.7);
      margin: 18px 0 30px;
    }

    .hero-highlights {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 14px;
      font-size: 0.95rem;
      color: rgba(13, 20, 22, 0.75);
    }

    .hero-highlights div {
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(13, 20, 22, 0.08);
    }

    .hero-panel {
      background: linear-gradient(135deg, rgba(15, 107, 95, 0.12), rgba(255, 255, 255, 0.9));
      border-radius: 28px;
      border: 1px solid rgba(13, 20, 22, 0.1);
      padding: 24px;
      box-shadow: 0 40px 90px -60px rgba(13, 20, 22, 0.7);
      position: relative;
      overflow: hidden;
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: rgba(224, 106, 59, 0.2);
      top: -120px;
      right: -80px;
      filter: blur(4px);
    }

    .panel-card {
      background: white;
      border-radius: 20px;
      padding: 18px 20px;
      border: 1px solid rgba(13, 20, 22, 0.08);
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .panel-card h3 {
      margin: 0 0 6px;
      font-size: 1.05rem;
    }

    .panel-card p {
      margin: 0;
      font-size: 0.95rem;
      color: rgba(13, 20, 22, 0.7);
    }

    .section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 40px;
    }

    .section-title h2 {
      font-family: "Plus Jakarta Sans", "Inter", sans-serif;
      font-weight: 700;
      letter-spacing: -0.02em;
      font-size: clamp(2rem, 3vw, 3rem);
      margin-bottom: 12px;
    }

    .section-title p {
      color: rgba(13, 20, 22, 0.65);
      margin: 0;
      font-size: 1.05rem;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }

    .card {
      background: rgba(255, 255, 255, 0.85);
      border-radius: 22px;
      padding: 24px;
      border: 1px solid rgba(13, 20, 22, 0.08);
      box-shadow: 0 20px 60px -50px rgba(13, 20, 22, 0.7);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 30px 80px -60px rgba(13, 20, 22, 0.8);
    }

    .card span {
      display: inline-flex;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(15, 107, 95, 0.12);
      color: var(--moss-dark);
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .card h3 {
      margin: 0 0 10px;
      font-size: 1.2rem;
    }

    .card p {
      margin: 0;
      color: rgba(13, 20, 22, 0.65);
    }

    .flow {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
    }

    .flow-step {
      padding: 22px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(220, 227, 220, 0.6));
      border: 1px solid rgba(13, 20, 22, 0.08);
      position: relative;
    }

    .flow-step strong {
      display: inline-flex;
      width: 38px;
      height: 38px;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: var(--ink);
      color: white;
      margin-bottom: 14px;
    }

    .split {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      align-items: center;
      padding: 50px;
      border-radius: 28px;
      background: linear-gradient(120deg, rgba(13, 20, 22, 0.96), rgba(15, 83, 74, 0.9));
      color: white;
      position: relative;
      overflow: hidden;
    }

    .split::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% 20%, rgba(240, 199, 94, 0.18), transparent 50%);
      opacity: 0.9;
    }

    .split > * {
      position: relative;
      z-index: 1;
    }

    .split h2 {
      font-family: "Plus Jakarta Sans", "Inter", sans-serif;
      font-weight: 700;
      letter-spacing: -0.02em;
      font-size: 2.6rem;
      margin: 0 0 16px;
    }

    .split p {
      color: rgba(255, 255, 255, 0.75);
      margin: 0 0 20px;
    }

    .split ul {
      padding-left: 18px;
      margin: 0;
      color: rgba(255, 255, 255, 0.75);
    }

    .split li {
      margin-bottom: 8px;
    }

    .cta-panel {
      padding: 32px;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .logos {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      color: rgba(13, 20, 22, 0.55);
      font-size: 0.9rem;
      justify-content: center;
    }

    .logos span {
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(13, 20, 22, 0.08);
    }

    .contact {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      padding: 36px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 30px;
      border: 1px solid rgba(13, 20, 22, 0.08);
    }

    .contact-card {
      padding: 24px;
      border-radius: 22px;
      background: rgba(243, 244, 242, 0.8);
      border: 1px solid rgba(13, 20, 22, 0.08);
    }

    .contact-card h3 {
      margin: 0 0 10px;
      font-size: 1.1rem;
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .badge {
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(15, 107, 95, 0.12);
      color: var(--moss-dark);
      font-size: 0.8rem;
      font-weight: 600;
    }

    footer {
      background: var(--ink);
      color: rgba(255, 255, 255, 0.7);
      padding: 40px 0 30px;
      margin-top: 80px;
    }

    footer .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
    }

    footer h2 {
      font-family: "Plus Jakarta Sans", "Inter", sans-serif;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: white;
      margin-bottom: 12px;
    }

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

    footer a:hover {
      color: white;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      animation: rise 0.9s ease forwards;
      animation-delay: var(--delay, 0s);
    }

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

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

      .yt-link::after {
        animation: none;
      }
    }

    .video-embed {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 30px 80px -50px rgba(13, 20, 22, 0.5);
      aspect-ratio: 16 / 9;
      background: #000;
    }

    .video-embed iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    @media (max-width: 720px) {
      .nav-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .brand img {
        width: 160px;
      }

      .brand-sub {
        display: none;
      }

      .hero {
        padding: 50px 0 20px;
      }

      .split {
        padding: 30px;
      }

      .contact {
        padding: 24px;
      }

      .video-placeholder {
        min-height: 320px;
        padding: 28px;
      }

      .video-play-btn {
        width: 70px;
        height: 70px;
      }

      .video-play-btn::after {
        border-left: 18px solid white;
        border-top: 11px solid transparent;
        border-bottom: 11px solid transparent;
      }
    }
