/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #1e8a8a;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --teal-dark:    #1a6b6b;
      --teal:         #1e8a8a;
      --teal-light:   #e8f4f4;
      --accent:       #f0a030;
      --accent-dark:  #d4881a;
      --text-dark:    #1a2e2e;
      --text-mid:     #3d5a5a;
      --text-light:   #6b8a8a;
      --bg:           #ffffff;
      --bg-soft:      #f7fbfb;
      --border:       #d0e4e4;
      --radius:       10px;
      --shadow:       0 4px 24px rgba(26,107,107,0.10);
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      font-size: 17px;
      line-height: 1.65;
      color: var(--text-dark);
      background: var(--bg);
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { color: var(--teal); text-decoration: none; }
    a:hover { text-decoration: underline; }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3, h4 {
      font-weight: 700;
      line-height: 1.25;
      color: var(--text-dark);
    }
    h1 { font-size: clamp(2rem, 4vw, 3rem); }
    h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
    h3 { font-size: 1.25rem; }
    .lead { font-size: 1.2rem; color: var(--text-mid); max-width: 640px; }
    .section-label {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-block;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.2s;
      border: 2px solid transparent;
    }
    .btn-primary {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
    }
    .btn-primary:hover {
      background: var(--accent-dark);
      border-color: var(--accent-dark);
      text-decoration: none;
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(240,160,48,0.35);
    }
    .btn-outline {
      background: transparent;
      color: var(--teal-dark);
      border-color: var(--teal-dark);
    }
    .btn-outline:hover {
      background: var(--teal-light);
      text-decoration: none;
    }

    /* ===== HEADER / NAV ===== */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.97);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(8px);
    }
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--teal-dark);
    }
    .logo-mark {
      height: 36px;
      width: auto;
      flex-shrink: 0;
    }
    .logo-mark-dark {
      background: rgba(255,255,255,0.95);
      border-radius: 8px;
      padding: 4px 8px;
      height: 40px;
    }
    .logo-text {
      display: none;
      font-size: 1.4rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: inherit;
    }
    .logo-dark { color: #fff; }
    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      color: var(--text-mid);
      font-weight: 500;
      font-size: 0.95rem;
    }
    .nav-links a:hover { color: var(--teal-dark); text-decoration: none; }
    .nav-cta { display: flex; gap: 12px; align-items: center; }
    .nav-hamburger {
      display: none;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: #fff;
      color: var(--teal-dark);
      cursor: pointer;
      -webkit-appearance: none;
      appearance: none;
      touch-action: manipulation;
    }
    .nav-hamburger svg {
      width: 22px;
      height: 22px;
      pointer-events: none;
    }
    .nav-hamburger .icon-close { display: none; }
    .nav-hamburger[aria-expanded="true"] .icon-open { display: none; }
    .nav-hamburger[aria-expanded="true"] .icon-close { display: block; }
    .btn-hidden { display: none !important; }

    @media (max-width: 768px) {
      nav {
        position: relative;
        height: auto;
        min-height: 68px;
        padding: 10px 0;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 12px;
        box-shadow: 0 12px 24px rgba(0,0,0,0.1);
        padding: 14px 16px;
        gap: 12px;
        flex-direction: column;
        z-index: 1200;
      }
      .nav-links.is-open { display: flex; }
      .nav-cta {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .btn-nav {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-height: 38px;
        white-space: nowrap;
      }
      .nav-hamburger { display: inline-flex; }
    }

    /* ===== HERO ===== */
    .hero {
      padding: 80px 0 100px;
      background: linear-gradient(160deg, var(--bg) 0%, var(--teal-light) 100%);
      overflow: hidden;
      position: relative;
    }
    .hero::after {
      content: '';
      position: absolute;
      right: -120px;
      top: -80px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(30,138,138,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--teal-light);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 6px 16px 6px 8px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--teal-dark);
      margin-bottom: 20px;
    }
    .hero-badge-dot {
      width: 8px; height: 8px;
      background: var(--teal);
      border-radius: 50%;
    }
    .hero h1 { margin-bottom: 20px; }
    .hero h1 span { color: var(--teal); }
    .hero .lead { margin-bottom: 36px; }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .hero-visual {
      position: relative;
    }
    .hero-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: var(--shadow);
      padding: 28px;
      border: 1px solid var(--border);
    }
    .hero-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }
    .avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 0.9rem;
      flex-shrink: 0;
    }
    .hero-card-name { font-weight: 600; font-size: 0.95rem; }
    .hero-card-role { font-size: 0.8rem; color: var(--text-light); }
    .task-list { display: flex; flex-direction: column; gap: 10px; }
    .task-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 14px;
      border-radius: 8px;
      background: var(--bg-soft);
      font-size: 0.9rem;
    }
    .task-done { color: var(--text-light); }
    .task-done .task-icon { color: #4caf7d; }
    .task-active { background: var(--teal-light); color: var(--teal-dark); font-weight: 500; }
    .task-active .task-icon { color: var(--teal); }
    .task-icon { font-size: 1rem; flex-shrink: 0; }
    .time-saved {
      margin-top: 20px;
      padding: 12px 16px;
      background: linear-gradient(90deg, rgba(240,160,48,0.12), rgba(240,160,48,0.05));
      border-left: 3px solid var(--accent);
      border-radius: 0 8px 8px 0;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--accent-dark);
    }

    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
    }

    /* ===== PROBLEM ===== */
    .problem {
      padding: 80px 0;
      background: var(--text-dark);
      color: #fff;
    }
    .problem h2 { color: #fff; margin-bottom: 16px; }
    .problem .lead { color: rgba(255,255,255,0.72); margin-bottom: 48px; }
    .problem .section-label { color: var(--accent); }
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
    }
    .pain-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 24px;
    }
    .pain-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 8px;
    }
    .pain-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

    /* ===== FEATURES ===== */
    .features {
      padding: 100px 0;
      background: var(--bg);
    }
    .features-header { text-align: center; margin-bottom: 64px; }
    .features-header h2 { margin-bottom: 16px; }
    .features-header .lead { margin: 0 auto; text-align: center; }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
    }
    .feature-card {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px 32px;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .feature-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-3px);
    }
    .feature-icon {
      width: 56px; height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 1.6rem;
    }
    .feature-icon-1 { background: rgba(30,138,138,0.12); }
    .feature-icon-2 { background: rgba(240,160,48,0.12); }
    .feature-icon-3 { background: rgba(76,175,125,0.12); }
    .feature-card h3 { margin-bottom: 12px; }
    .feature-card p { color: var(--text-mid); font-size: 0.95rem; }
    .feature-list {
      margin-top: 16px;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.9rem;
      color: var(--text-mid);
    }
    .feature-list li::before {
      content: "✓";
      color: var(--teal);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ===== HOW IT WORKS ===== */
    .how {
      padding: 100px 0;
      background: var(--teal-light);
    }
    .how-header { text-align: center; margin-bottom: 64px; }
    .how-header h2 { margin-bottom: 16px; }
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 32px;
      position: relative;
    }
    .step {
      text-align: center;
      padding: 0 16px;
    }
    .step-num {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--teal-dark);
      color: #fff;
      font-size: 1.25rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }
    .step h3 { margin-bottom: 8px; }
    .step p { color: var(--text-mid); font-size: 0.95rem; }

    /* ===== MISSION ===== */
    .mission {
      padding: 100px 0;
      background: var(--bg);
    }
    .mission-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .mission-quote {
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1.4;
      color: var(--teal-dark);
      border-left: 4px solid var(--accent);
      padding-left: 24px;
      margin-bottom: 32px;
    }
    .mission p { color: var(--text-mid); margin-bottom: 16px; }
    .mission-visual { display: flex; flex-direction: column; gap: 20px; }
    .stat-card {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 28px;
    }
    .stat-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--teal-dark);
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-label { font-size: 0.9rem; color: var(--text-mid); }

    @media (max-width: 768px) {
      .mission-inner { grid-template-columns: 1fr; gap: 48px; }
    }

    /* ===== VALUES ===== */
    .values {
      padding: 100px 0;
      background: var(--bg-soft);
    }
    .values-header { text-align: center; margin-bottom: 64px; }
    .values-header h2 { margin-bottom: 16px; }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 24px;
    }
    .value-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      text-align: center;
    }
    .value-emoji { font-size: 2rem; margin-bottom: 12px; }
    .value-card h3 { font-size: 1rem; margin-bottom: 8px; }
    .value-card p { font-size: 0.875rem; color: var(--text-mid); }

    /* ===== VISION ===== */
    .vision {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--teal-dark) 0%, #0f4a4a 100%);
      color: #fff;
      text-align: center;
    }
    .vision .section-label { color: rgba(255,255,255,0.6); }
    .vision h2 { color: #fff; margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto; }
    .vision .lead { color: rgba(255,255,255,0.75); margin: 0 auto 48px; text-align: center; }
    .vision-goals {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      max-width: 800px;
      margin: 0 auto;
    }
    .vision-goal {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 50px;
      padding: 10px 20px;
      font-size: 0.9rem;
      font-weight: 500;
      color: rgba(255,255,255,0.9);
    }

    /* ===== Team ===== */
    .team {
      padding: 100px 0;
      background: var(--bg);
      text-align: center;
    }
    .team h2 { margin-bottom: 16px; }
    .team .lead { margin: 0 auto 24px; text-align: center; }

    /* ===== CTA ===== */
    .cta {
      padding: 100px 0;
      background: var(--bg);
      text-align: center;
    }
    .cta h2 { margin-bottom: 16px; }
    .cta .lead { margin: 0 auto 40px; text-align: center; }
    .cta-form {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      max-width: 520px;
      margin: 0 auto 16px;
    }
    .cta-form input {
      flex: 1;
      min-width: 200px;
      padding: 14px 20px;
      border: 2px solid var(--border);
      border-radius: 50px;
      font-size: 1rem;
      outline: none;
      transition: border-color 0.2s;
      color: var(--text-dark);
      background: var(--bg-soft);
    }
    .cta-form input:focus { border-color: var(--teal); background: #fff; }
    .cta-form input::placeholder { color: var(--text-light); }
    .cta-note { font-size: 0.85rem; color: var(--text-light); }
    .cta-note a { color: var(--teal); }

    /* ===== FOOTER ===== */
    footer {
      background: var(--text-dark);
      color: rgba(255,255,255,0.6);
      padding: 60px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand .logo { color: #fff; margin-bottom: 16px; }
    .footer-brand p { font-size: 0.9rem; max-width: 280px; }
    .footer-col h4 {
      color: #fff;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
    .footer-links a:hover { color: #fff; text-decoration: none; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.85rem;
    }
    .footer-bottom a { color: rgba(255,255,255,0.5); }
    .footer-bottom a:hover { color: #fff; text-decoration: none; }

    @media (max-width: 768px) {
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
    }

    /* ===== SWISS BADGE ===== */
    .swiss-flag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-light);
      margin-top: 12px;
    }
    .swiss-flag .flag { font-size: 1rem; }
