:root {
    --vihrea: #6EB82A;
    --vihrea-tumma: #2E5E1A;
    --metsa: #1A3A1A;
    --kerma: #F4EFE3;
    --kerma-syva: #EAE2CE;
    --terra: #C95B3D;
    --aurinko: #E8B931;
    --taivas: #8AB6D6;
    --musta: #161A14;
    --harmaa: #6B6F66;
    --kokoomus: #003a54;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Hanken Grotesk', system-ui, sans-serif;
    background: var(--kerma);
    color: var(--musta);
    line-height: 1.55;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
  }
  .display {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.025em;
    font-variation-settings: "opsz" 96;
  }
  .display-sm {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.02em;
  }

  /* COMMON */
  .kokoomus { color: var(--kokoomus); }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 50;
    background: var(--kerma);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 18px 32px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: 18px;
    letter-spacing: -0.01em;
  }
  .logo-mark {
    width: 32px; height: 32px;
    background: var(--vihrea);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
  }
  .logo-mark::before, .logo-mark::after {
    content: ''; position: absolute;
    background: var(--vihrea-tumma);
    opacity: 0.35;
  }
  .logo-mark::before {
    width: 100%; height: 2px;
    top: 50%; left: 0;
  }
  .logo-mark::after {
    width: 70%; height: 70%;
    border: 2px solid var(--vihrea-tumma);
    border-radius: 50%;
    top: 15%; left: 15%;
    background: transparent;
    opacity: 0.4;
  }
  .nav-cta {
    background: var(--musta); color: var(--kerma);
    padding: 10px 22px; border-radius: 999px;
    text-decoration: none; font-weight: 600; font-size: 15px;
    transition: transform .2s;
  }
  .nav-cta:hover { transform: translateY(-1px); }

  /* HERO */
  .hero {
    padding: 80px 32px 100px;
    max-width: 1280px; margin: 0 auto;
    position: relative;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--kerma-syva);
    padding: 8px 16px; border-radius: 999px;
    font-size: 14px; font-weight: 500;
    margin-bottom: 36px;
  }
  .hero-tag-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--terra);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }
  .hero h1 {
    font-size: clamp(48px, 9vw, 128px);
    margin-bottom: 32px;
    max-width: 16ch;
  }
  .hero h1 .accent { color: var(--vihrea); }
  .hero h1 .strike {
    position: relative; display: inline-block;
    color: var(--harmaa);
  }
  .hero h1 .strike::after {
    content: ''; position: absolute;
    top: 55%; left: -2%; right: -2%;
    height: 8px; background: var(--terra);
    transform: rotate(-2deg);
  }
  .hero-sub {
    font-size: 22px; max-width: 56ch;
    color: var(--musta);
    margin-bottom: 48px;
    line-height: 1.45;
  }
  .hero-cta-row {
    display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px; border-radius: 10px;
    text-decoration: none; font-weight: 600; font-size: 16px;
    transition: transform .2s, box-shadow .2s;
    border: none; cursor: pointer;
  }
  .btn-sm { padding: 4px 12px !important; font-size: 14px !important; border-radius: 5px !important; }
  .btn-primary { background: var(--vihrea); color: var(--metsa); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(110, 184, 42, 0.3); }
  .btn-ghost {
    background: transparent; color: var(--musta);
    border: 1.5px solid var(--musta);
  }
  .btn-ghost:hover { background: var(--musta); color: var(--kerma); }

  .hero-globe {
    position: absolute;
    top: 80px; right: -40px;
    width: 320px; height: 320px;
    opacity: 0.95;
  }

  /* HONEST INTRO */
  .honest {
    background: var(--metsa);
    color: var(--kerma);
    padding: 100px 32px;
  }
  .honest-inner {
    max-width: 900px; margin: 0 auto;
  }
  .honest-label {
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--vihrea); margin-bottom: 24px;
  }
  .honest h2 {
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 32px;
    max-width: 22ch;
  }
  .honest p {
    font-size: 20px; line-height: 1.5;
    max-width: 60ch;
    opacity: 0.92;
  }
  .honest p + p { margin-top: 18px; }

  /* SHARED VALUES */
  .section {
    padding: 120px 32px;
    max-width: 1280px; margin: 0 auto;
  }
  .section-label {
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--vihrea-tumma); margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before {
    content: ''; width: 32px; height: 2px; background: var(--vihrea);
  }
  .section h2 {
    font-size: clamp(40px, 6vw, 80px);
    margin-bottom: 48px;
    max-width: 16ch;
  }
  .shared-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
  }
  .shared-card {
    background: var(--kerma-syva);
    padding: 32px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
  }
  .shared-card-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: 14px;
    color: var(--vihrea-tumma);
    margin-bottom: 16px;
  }
  .shared-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: 22px;
    line-height: 1.15; letter-spacing: -0.01em;
    margin-bottom: 12px;
  }
  .shared-card p {
    font-size: 15px; color: var(--harmaa);
    margin-bottom: 1rem;
  }

  /* WHERE FURTHER */
  .further {
    background: var(--vihrea);
    color: var(--metsa);
    padding: 120px 32px;
  }
  .further-inner {
    max-width: 1280px; margin: 0 auto;
  }
  .further .section-label { color: var(--metsa); }
  .further .section-label::before { background: var(--metsa); }
  .further h2 { color: var(--metsa); }
  .further-list {
    display: grid; gap: 0;
    margin-top: 60px;
  }
  .further-item {
    display: grid;
    grid-template-columns: 80px 1fr 2fr;
    gap: 32px; padding: 40px 0;
    border-top: 2px solid var(--metsa);
    align-items: start;
  }
  .further-item:last-child { border-bottom: 2px solid var(--metsa); }
  .further-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: 32px;
    line-height: 1;
  }
  .further-item h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: 28px;
    line-height: 1.1; letter-spacing: -0.01em;
  }
  .further-item p {
    font-size: 17px; line-height: 1.55;
  }

  /* DON'T SWITCH */
  .dont {
    background: var(--kerma);
    padding: 120px 32px;
    position: relative;
  }
  .dont-inner {
    max-width: 1100px; margin: 0 auto;
  }
  .dont .section-label { color: var(--terra); }
  .dont .section-label::before { background: var(--terra); }
  .dont h2 .accent {
    background: var(--terra); color: var(--kerma);
    padding: 0 18px; border-radius: 8px;
    display: inline-block; transform: rotate(-1deg);
  }
  .dont-intro {
    font-size: 22px; max-width: 56ch;
    margin-bottom: 56px; line-height: 1.45;
  }
  .dont-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
  }
  .dont-card {
    background: white;
    border: 2px solid var(--musta);
    padding: 28px; border-radius: 20px;
    position: relative;
  }
  .dont-card-mark {
    width: 36px; height: 36px;
    background: var(--terra); color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px;
    margin-bottom: 16px;
    font-family: 'Bricolage Grotesque', sans-serif;
  }
  .dont-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: 19px;
    line-height: 1.15; margin-bottom: 8px;
  }
  .dont-card p {
    font-size: 15px; color: var(--harmaa); line-height: 1.5;
  }

  /* WHO */
  .who {
    background: var(--taivas);
    padding: 100px 32px;
    color: var(--metsa);
  }
  .who-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center;
  }
  .who .section-label { color: var(--metsa); }
  .who .section-label::before { background: var(--metsa); }
  .who h2 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
  }
  .who ul {
    list-style: none; margin-top: 16px;
  }
  .who li {
    padding: 14px 0;
    border-bottom: 1.5px solid rgba(26, 58, 26, 0.2);
    font-size: 17px; font-weight: 500;
    display: flex; align-items: center; gap: 14px;
  }
  .who li::before {
    content: '→';
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; color: var(--vihrea);
    font-size: 22px;
  }

  /* NEXT STEP (WHATSAPP) */
  .next-step {
    background: var(--metsa);
    color: var(--kerma);
    padding: 120px 32px;
    text-align: left;
  }
  .next-step-inner {
    max-width: 900px; margin: 0 auto;
  }
  .next-step h2 {
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 32px;
    line-height: 0.95;
  }
  .next-step h2 .accent { color: var(--vihrea); }
  .next-step p {
    font-size: 20px; opacity: 0.85;
    margin-bottom: 48px;
    margin-left: auto; margin-right: auto;
  }
  .next-step .btn-primary {
    font-size: 20px; padding: 22px 40px;
  }
  .next-step-secondary {
    margin-top: 32px;
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
    font-size: 15px;
  }
  .next-step-secondary a {
    color: var(--kerma); opacity: 0.7;
    text-decoration: underline; text-underline-offset: 4px;
  }
  .next-step-secondary a:hover { opacity: 1; }

  /* FINAL CTA */
  .final {
    background: var(--musta);
    color: var(--kerma);
    padding: 120px 32px;
    text-align: center;
  }
  .final-inner {
    max-width: 900px; margin: 0 auto;
  }
  .final h2 {
    font-size: clamp(48px, 8vw, 96px);
    margin-bottom: 32px;
    line-height: 0.95;
  }
  .final h2 .accent { color: var(--vihrea); }
  .final p {
    font-size: 20px; opacity: 0.85;
    margin-bottom: 48px;
    max-width: 50ch; margin-left: auto; margin-right: auto;
  }
  .final .btn-primary {
    font-size: 20px; padding: 22px 40px;
  }
  .final-secondary {
    margin-top: 32px;
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
    font-size: 15px;
  }
  .final-secondary a {
    color: var(--kerma); opacity: 0.7;
    text-decoration: underline; text-underline-offset: 4px;
  }
  .final-secondary a:hover { opacity: 1; }

  /* ABOUT MAKERS */
  .about {
    background: var(--metsa);
    color: var(--kerma);
    padding: 120px 32px;
    text-align: left;
  }
  .about-inner {
    max-width: 900px; margin: 0 auto;
  }
  .about-inner img {
    border-radius: 50%;
    background-color: #fff;
    max-width: 320px;
    width: 100%;
  }
  .about-inner .shared-card h3 {
    color: var(--metsa);
  }
  .about h2 {
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 32px;
    line-height: 0.95;
  }
  .about h2 .accent { color: var(--vihrea); }
  .about .btn-primary {
    font-size: 20px; padding: 22px 40px;
  }
  .about-secondary {
    margin-top: 32px;
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
    font-size: 15px;
  }
  .about-secondary a {
    color: var(--kerma); opacity: 0.7;
    text-decoration: underline; text-underline-offset: 4px;
  }
  .about-secondary a:hover { opacity: 1; }

  /* FOOTER */
  footer {
    background: var(--metsa);
    color: var(--kerma);
    padding: 40px 32px;
    text-align: center;
    font-size: 13px; opacity: 0.7;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .hero { padding: 48px 24px 60px; }
    .hero h1 { font-size: clamp(40px, 12vw, 64px); }
    .hero-globe { display: none; }
    .section { padding: 80px 24px; }
    .honest, .further, .dont, .who, .final { padding: 80px 24px; }
    .who-inner { grid-template-columns: 1fr; gap: 32px; }
    .further-item {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    nav { padding: 14px 20px; }
  }