#ndf-header{
  --bg0:#18362c;
  --bg1:#245243;
  --stroke:rgba(255,255,255,.16);
  --text:#f4fcf8;
  --muted:rgba(244,252,248,.76);
  --accent:#bdebd8;

  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(10px);
}

#ndf-header *{box-sizing:border-box}
#ndf-header a{color:inherit;text-decoration:none}

#ndf-header .bar{
  background:linear-gradient(180deg,var(--bg1),var(--bg0)) !important;
  border-bottom:1px solid var(--stroke);
}

#ndf-header .wrap{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px 0;
}

#ndf-header .logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  letter-spacing:.2px;
  min-width:0;
}

#ndf-header .logo-mark{
  width:72px;
  height:72px;
  flex:0 0 auto;
  position:relative;
}

#ndf-header .logo-mark svg{
  width:100%;
  height:100%;
  display:block;
}

#ndf-header .logo-text{
  display:flex;
  flex-direction:column;
}

#ndf-header .logo-title{
  font-size:15px;
  line-height:1.2;
  display:block;
}

#ndf-header .logo-sub{
  font-size:11px;
  opacity:.8;
  display:block;
}

#ndf-header nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

#ndf-header nav ul,
#ndf-header nav ol{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

#ndf-header nav li{
  list-style:none !important;
  margin:0;
  padding:0;
}

#ndf-header nav li::marker{content:"" !important;}

#ndf-header nav li::before,
#ndf-header nav li::after{
  content:none !important;
  display:none !important;
}

#ndf-header nav a{
  padding:10px 14px;
  border-radius:14px;
  font-size:14px;
  line-height:1;
  border:1px solid transparent;
  transition:.16s ease;
  color:var(--muted);
  white-space:nowrap;
  display:block;
}

#ndf-header nav a:hover{
  border-color:rgba(183,245,214,.35);
  background:rgba(183,245,214,.08);
  color:var(--text);
}

#ndf-header nav .current-menu-item > a,
#ndf-header nav .current_page_item > a,
#ndf-header nav .current-menu-ancestor > a,
#ndf-header nav .current-page-ancestor > a{
  border-color:rgba(183,245,214,.35);
  background:rgba(183,245,214,.12);
  color:var(--text);
}

@media (max-width:900px){
  #ndf-header .wrap{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  #ndf-header nav{
    width:100%;
  }

  #ndf-header nav ul{
    width:100%;
    flex-direction:column;
    gap:8px;
  }

  #ndf-header nav a{
    width:100%;
    padding:8px 10px;
    font-size:13px;
  }
}
#ndf-footer{
   --bg0:#18362c;
--bg1:#245243;
--stroke:rgba(255,255,255,.16);
--text:#f4fcf8;
--muted:rgba(244,252,248,.76);
--accent:#bdebd8;

      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
      color:var(--text);
      background:
        linear-gradient(180deg, var(--bg1), var(--bg0));
      border-top:1px solid var(--stroke);
    }

    #ndf-footer *{box-sizing:border-box}
    #ndf-footer a{color:inherit;text-decoration:none}

    #ndf-footer .wrap{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
      padding:36px 0 24px;
      display:grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap:24px;
    }

    #ndf-footer h4{
      margin:0 0 10px;
      font-size:14px;
      letter-spacing:.3px;
    }

    #ndf-footer p,
    #ndf-footer li{
      margin:0;
      font-size:13.5px;
      line-height:1.55;
      color:var(--muted);
    }

    #ndf-footer ul{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:8px;
    }

    #ndf-footer .col a:hover{
      text-decoration:underline;
      text-decoration-color:rgba(183,245,214,.45);
    }

    #ndf-footer .brand{
      display:grid;
      gap:10px;
    }

    #ndf-footer .social{
      display:flex;
      gap:10px;
      margin-top:6px;
    }

    #ndf-footer .social a{
      padding:8px 12px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.04);
      font-size:13px;
      transition:.16s ease;
    }

    #ndf-footer .social a:hover{
      background:rgba(183,245,214,.10);
      border-color:rgba(183,245,214,.35);
    }

    #ndf-footer .bottom{
      grid-column:1 / -1;
      margin-top:20px;
      padding-top:14px;
      border-top:1px solid var(--stroke);
      font-size:12.5px;
      color:rgba(236,246,241,.6);
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      justify-content:space-between;
    }

    @media (max-width:900px){
      #ndf-footer .wrap{
        grid-template-columns:1fr;
        gap:20px;
      }
      #ndf-footer .bottom{
        flex-direction:column;
        gap:8px;
      }
    }

/* ===== NDF Today  ===== */
.ndf-today{
  --bg:#FFFFFF;
  --ink:#0F172A;
  --muted:rgba(15,23,42,.72);
  --line:rgba(15,23,42,.10);

  --g1:#2F7A4A;
  --g2:#256A40;
  --b1:#4DA3FF;
  --y1:#FFE082;

  --soft:#F3F4F6;
  --r:22px;
  --r2:28px;
  --sh: 0 18px 44px rgba(15,23,42,.10);
  --sh2: 0 26px 62px rgba(15,23,42,.14);

  font-family: Inter, "PT Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
}
.ndf-today *{box-sizing:border-box}
.ndf-today a, .ndf-today a:visited{color:inherit !important; text-decoration:none !important}
.ndf-today a:hover{color:inherit !important}

.ndf-today .wrap{ width:min(1200px, calc(100% - 40px)); margin:0 auto; }

.ndf-today .hero{
  padding:56px 0 26px;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(1100px 460px at 12% 20%, rgba(77,163,255,.14), transparent 60%),
    radial-gradient(900px 420px at 92% 12%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(760px 360px at 58% 98%, rgba(255,224,130,.14), transparent 60%);
  position:relative;
  overflow:hidden;
}

.ndf-today .kicker{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(15,23,42,.62);
}
.ndf-today .hrow{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
}
.ndf-today .daisyMark{
  width:34px;
  height:34px;
  flex:0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(15,23,42,.10));
}
.ndf-today h1{
  margin:0;
  font-size:clamp(30px, 3.5vw, 48px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.ndf-today .lead{
  margin:12px 0 0;
  font-size:16px;
  line-height:1.72;
  color:rgba(15,23,42,.78);
  max-width:92ch;
}

.ndf-today .panel{
  margin-top:18px;
  border:1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--sh);
  background:#fff;
  overflow:hidden;
}
.ndf-today .panelIn{ padding:18px; }

.ndf-today .grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}
.ndf-today .grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}

.ndf-today .tile{
  position:relative;
  display:block;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.70));
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  transition:.18s ease;
}
.ndf-today .tile::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 220px at 18% 18%, rgba(77,163,255,.14), transparent 62%),
    radial-gradient(440px 220px at 82% 10%, rgba(47,163,107,.16), transparent 62%),
    radial-gradient(520px 260px at 60% 108%, rgba(255,224,130,.14), transparent 64%);
  opacity:.95;
  pointer-events:none;
}
.ndf-today .tile > .in{
  position:relative;
  padding:16px 16px 14px;
  min-height:150px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
}
.ndf-today .tLabel{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,23,42,.58);
}
.ndf-today .tTitle{
  margin:0;
  font-size:18px;
  line-height:1.18;
  letter-spacing:-.01em;
}
.ndf-today .tText{
  margin:0;
  font-size:13px;
  line-height:1.55;
  color:rgba(15,23,42,.72);
}
.ndf-today .tGo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:13px;
  color:rgba(15,23,42,.86);
  padding-bottom:2px;
  border-bottom:1px solid rgba(47,122,74,.28);
  width:fit-content;
}
.ndf-today .tile:hover{
  transform: translateY(-2px);
  box-shadow: var(--sh2);
  border-color: rgba(47,122,74,.36);
  outline: 2px solid rgba(47,122,74,.14);
}

.ndf-today .btnRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.ndf-today .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none !important;
  font-weight:900;
  font-size:14px;
  border:1px solid rgba(47,122,74,.22);
  background: rgba(47,122,74,.08);
  color: var(--ink) !important;
  transition:.16s ease;
}
.ndf-today .btn:hover{
  transform: translateY(-1px);
  border-color: rgba(47,122,74,.38);
  background: rgba(47,122,74,.12);
}
.ndf-today .btnPrimary{
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color:#fff !important;
  border-color:transparent;
}
.ndf-today .btnPrimary:hover{
  background: linear-gradient(135deg, #1A6035, #134C2A);
}

@media (max-width: 980px){
  .ndf-today .grid3{grid-template-columns:1fr}
  .ndf-today .grid2{grid-template-columns:1fr}
  .ndf-today .hero{padding-top:40px}
}

/* ===== NDF About  ===== */
.ndf-about{
  --bg:#FFFFFF;
  --ink:#0F172A;
  --muted:rgba(15,23,42,.72);
  --line:rgba(15,23,42,.10);

  --g1:#2F7A4A;
  --g2:#256A40;
  --g3:#2FA36B;
  --b1:#4DA3FF;
  --y1:#FFE082;

  --soft:#F3F4F6;
  --r:22px;
  --r2:28px;
  --sh: 0 18px 44px rgba(15,23,42,.10);
  --sh2: 0 26px 62px rgba(15,23,42,.14);

  font-family: Inter, "PT Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
}
.ndf-about a, .ndf-about a:visited, .ndf-about a:hover{ color:inherit !important; }
.ndf-about .wrap{ width:min(1200px, calc(100% - 40px)); margin:0 auto; }

.ndf-about .hero{
  position:relative;
  padding:56px 0 26px;
  border-bottom:1px solid var(--line);
  overflow:hidden;
  background:
    radial-gradient(1100px 460px at 12% 20%, rgba(77,163,255,.14), transparent 60%),
    radial-gradient(900px 420px at 92% 12%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(760px 360px at 58% 98%, rgba(255,224,130,.14), transparent 60%);
}
.ndf-about .daisyBg{
  position:absolute; right:-120px; top:-90px; width:520px; height:520px;
  opacity:.22; pointer-events:none;
}
.ndf-about .kicker{
  font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:rgba(15,23,42,.62);
}
.ndf-about .hrow{ display:flex; align-items:center; gap:12px; margin-top:10px; }
.ndf-about .daisyMark{ width:34px; height:34px; flex:0 0 auto; filter: drop-shadow(0 10px 18px rgba(15,23,42,.10)); }
.ndf-about h1{
  margin:0; font-size:clamp(30px, 3.5vw, 48px); line-height:1.08; letter-spacing:-.02em;
}
.ndf-about .lead{
  margin:12px 0 0; font-size:16px; line-height:1.72; color:rgba(15,23,42,.78); max-width:90ch;
}

.ndf-about .section{ padding:44px 0; }
.ndf-about .sectionSoft{
  background:var(--soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.ndf-about .grid2{ display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:16px; }
.ndf-about .grid3{ display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:16px; }

.ndf-about .glass{
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  border-radius: var(--r2);
  box-shadow: var(--sh);
}
.ndf-about .pad{ padding:18px; }

.ndf-about .tile{
  position:relative;
  display:block;
  text-decoration:none !important;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.70));
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  transition:.18s ease;
}
.ndf-about .tile::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 220px at 18% 18%, rgba(77,163,255,.12), transparent 62%),
    radial-gradient(440px 220px at 82% 10%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(520px 260px at 60% 108%, rgba(255,224,130,.12), transparent 64%);
  opacity:.95;
  pointer-events:none;
}
.ndf-about .tile:hover{
  transform: translateY(-2px);
  box-shadow: var(--sh2);
  border-color: rgba(47,122,74,.36);
  outline: 2px solid rgba(47,122,74,.12);
}
.ndf-about .tile .in{
  position:relative;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:156px;
}
.ndf-about .label{
  font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:rgba(15,23,42,.58);
}
.ndf-about .title{ margin:0; font-size:18px; line-height:1.18; letter-spacing:-.01em; }
.ndf-about .text{ margin:0; font-size:13px; line-height:1.60; color:rgba(15,23,42,.74); }

.ndf-about .list{
  margin:0;
  padding-left:18px;
  color:rgba(15,23,42,.74);
  font-size:14px;
  line-height:1.70;
}
.ndf-about .list li{ margin:8px 0; }

.ndf-about .btnRow{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.ndf-about .btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:999px; text-decoration:none !important;
  font-weight:900; font-size:14px;
  border:1px solid rgba(47,122,74,.22);
  background: rgba(47,122,74,.08);
  color: var(--ink) !important;
  transition:.16s ease;
}
.ndf-about .btn:hover{
  transform: translateY(-1px);
  border-color: rgba(47,122,74,.38);
  background: rgba(47,122,74,.12);
}
.ndf-about .btnPrimary{
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color:#fff !important;
  border-color: transparent;
}
.ndf-about .btnPrimary:hover{ background: linear-gradient(135deg, #1A6035, #134C2A); }

.ndf-about .note{
  border-radius:20px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
  padding:16px;
  color:rgba(15,23,42,.75);
  font-size:14px;
  line-height:1.65;
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
}

@media (max-width: 980px){
  .ndf-about .grid2, .ndf-about .grid3{ grid-template-columns:1fr; }
  .ndf-about .hero{ padding-top:40px; }
}

/* ===== Projects  ===== */
.ndf-projects{
  --bg:#FFFFFF;
  --ink:#0F172A;
  --muted:rgba(15,23,42,.72);
  --line:rgba(15,23,42,.10);

  --g1:#2F7A4A; /* осветлённый зелёный */
  --g2:#256A40;
  --g3:#2FA36B;
  --b1:#4DA3FF;
  --y1:#FFE082;

  --soft:#F3F4F6;
  --r:22px;
  --r2:28px;
  --sh: 0 18px 44px rgba(15,23,42,.10);
  --sh2: 0 26px 62px rgba(15,23,42,.14);

  font-family: Inter, "PT Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
}

.ndf-projects *{box-sizing:border-box}
.ndf-projects a{text-decoration:none}

.ndf-projects .tile,
.ndf-projects .tile:visited,
.ndf-projects .tile:hover,
.ndf-projects .btn,
.ndf-projects .btn:visited,
.ndf-projects .btn:hover,
.ndf-projects .btnPrimary,
.ndf-projects .btnPrimary:visited,
.ndf-projects .btnPrimary:hover,
.ndf-projects .tGo,
.ndf-projects .tGo:visited,
.ndf-projects .tGo:hover{
  color:inherit !important;
  text-decoration:none !important;
}

.ndf-projects .btnPrimary,
.ndf-projects .btnPrimary:visited,
.ndf-projects .btnPrimary:hover{
  color:#fff !important;
}

.ndf-projects .wrap{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}

.ndf-projects .hero{
  padding:56px 0 26px;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(1100px 460px at 12% 20%, rgba(77,163,255,.14), transparent 60%),
    radial-gradient(900px 420px at 92% 12%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(760px 360px at 58% 98%, rgba(255,224,130,.14), transparent 60%);
  position:relative;
  overflow:hidden;
}

.ndf-projects .daisyBg{
  position:absolute;
  right:-120px;
  top:-90px;
  width:520px;
  height:520px;
  opacity:.22;
  pointer-events:none;
}
.ndf-projects .daisyBg2{
  position:absolute;
  left:-140px;
  bottom:-240px;
  width:520px;
  height:520px;
  opacity:.14;
  pointer-events:none;
}

.ndf-projects .kicker{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(15,23,42,.62);
}
.ndf-projects .hrow{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
}
.ndf-projects .daisyMark{
  width:34px;
  height:34px;
  flex:0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(15,23,42,.10));
}
.ndf-projects h1{
  margin:0;
  font-size:clamp(30px, 3.5vw, 48px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.ndf-projects .lead{
  margin:12px 0 0;
  font-size:16px;
  line-height:1.72;
  color:rgba(15,23,42,.78);
  max-width:92ch;
}

/* Sections */
.ndf-projects .section{
  padding:44px 0;
}
.ndf-projects .h2{
  font-size:18px;
  font-weight:900;
  letter-spacing:-.01em;
  margin:0;
}
.ndf-projects .sub{
  margin:8px 0 0;
  color:rgba(15,23,42,.72);
  line-height:1.65;
  max-width:92ch;
}

/* Grids */
.ndf-projects .grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.ndf-projects .grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}

/* Tiles */
.ndf-projects .tile{
  position:relative;
  display:block;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.70));
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  transition: .18s ease;
}
.ndf-projects .tile::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 220px at 18% 18%, rgba(77,163,255,.14), transparent 62%),
    radial-gradient(440px 220px at 82% 10%, rgba(47,163,107,.16), transparent 62%),
    radial-gradient(520px 260px at 60% 108%, rgba(255,224,130,.14), transparent 64%);
  opacity:.95;
  pointer-events:none;
}
.ndf-projects .tile > .in{
  position:relative;
  padding:16px 16px 14px;
  min-height:144px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
}
.ndf-projects .label{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,23,42,.58);
}
.ndf-projects .tTitle{
  margin:0;
  font-size:18px;
  line-height:1.18;
  letter-spacing:-.01em;
}
.ndf-projects .tText{
  margin:0;
  font-size:13px;
  line-height:1.55;
  color:rgba(15,23,42,.72);
}
.ndf-projects .tGo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:13px;
  color:rgba(15,23,42,.86);
  padding-bottom:2px;
  border-bottom:1px solid rgba(47,122,74,.28);
  width:fit-content;
}
.ndf-projects .tile:hover{
  transform: translateY(-2px);
  box-shadow: var(--sh2);
  border-color: rgba(47,122,74,.36);
  outline: 2px solid rgba(47,122,74,.14);
}

.ndf-projects .tile--green{
  border-color: rgba(47,122,74,.20);
}
.ndf-projects .tile--green::before{
  background:
    radial-gradient(440px 240px at 18% 18%, rgba(47,122,74,.16), transparent 62%),
    radial-gradient(520px 260px at 82% 10%, rgba(47,163,107,.18), transparent 62%),
    radial-gradient(520px 260px at 60% 108%, rgba(77,163,255,.12), transparent 64%);
}

.ndf-projects .tile--placeholder{
  border-style:dashed;
}
.ndf-projects .tile--placeholder .tGo{
  border-bottom-color: rgba(15,23,42,.18);
}

/* CTA row */
.ndf-projects .ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.ndf-projects .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none !important;
  font-weight:900;
  font-size:14px;
  border:1px solid rgba(47,122,74,.22);
  background: rgba(47,122,74,.08);
  color: var(--ink) !important;
  transition:.16s ease;
}
.ndf-projects .btn:hover{
  transform: translateY(-1px);
  border-color: rgba(47,122,74,.38);
  background: rgba(47,122,74,.12);
}
.ndf-projects .btnPrimary{
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color:#fff !important;
  border-color:transparent;
}
.ndf-projects .btnPrimary:hover{
  background: linear-gradient(135deg, #1A6035, #134C2A);
}

@media (max-width: 980px){
  .ndf-projects .grid3{ grid-template-columns:1fr; }
  .ndf-projects .grid2{ grid-template-columns:1fr; }
  .ndf-projects .hero{ padding-top:40px; }
}

/* ===== News  ===== */
.ndf-news{
  --bg:#FFFFFF;
  --ink:#0F172A;
  --muted:rgba(15,23,42,.72);
  --line:rgba(15,23,42,.10);

  --g1:#2F7A4A; /* осветлённый зелёный */
  --g2:#256A40;
  --g3:#2FA36B;
  --b1:#4DA3FF;
  --y1:#FFE082;

  --soft:#F3F4F6;
  --r:22px;
  --r2:28px;
  --sh: 0 18px 44px rgba(15,23,42,.10);
  --sh2: 0 26px 62px rgba(15,23,42,.14);

  font-family: Inter, "PT Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
}

.ndf-news *{box-sizing:border-box}
.ndf-news a,
.ndf-news a:visited{color:inherit !important;text-decoration:none !important}
.ndf-news a:hover{color:inherit !important}

.ndf-news .wrap{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}

.ndf-news .hero{
  padding:56px 0 26px;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(1100px 460px at 12% 20%, rgba(77,163,255,.14), transparent 60%),
    radial-gradient(900px 420px at 92% 12%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(760px 360px at 58% 98%, rgba(255,224,130,.14), transparent 60%);
  position:relative;
  overflow:hidden;
}

.ndf-news .daisyBg{
  position:absolute;
  right:-120px;
  top:-90px;
  width:520px;
  height:520px;
  opacity:.22;
  pointer-events:none;
}
.ndf-news .daisyBg2{
  position:absolute;
  left:-140px;
  bottom:-240px;
  width:520px;
  height:520px;
  opacity:.14;
  pointer-events:none;
}

.ndf-news .kicker{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(15,23,42,.62);
}
.ndf-news .hrow{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
}
.ndf-news .daisyMark{
  width:34px;
  height:34px;
  flex:0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(15,23,42,.10));
}
.ndf-news h1{
  margin:0;
  font-size:clamp(30px, 3.5vw, 48px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.ndf-news .lead{
  margin:12px 0 0;
  font-size:16px;
  line-height:1.72;
  color:rgba(15,23,42,.78);
  max-width:92ch;
}

/* CTA row */
.ndf-news .ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.ndf-news .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none !important;
  font-weight:900;
  font-size:14px;
  border:1px solid rgba(47,122,74,.22);
  background: rgba(47,122,74,.08);
  color: var(--ink) !important;
  transition:.16s ease;
}
.ndf-news .btn:hover{
  transform: translateY(-1px);
  border-color: rgba(47,122,74,.38);
  background: rgba(47,122,74,.12);
}
.ndf-news .btnPrimary{
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color:#fff !important;
  border-color:transparent;
}
.ndf-news .btnPrimary:hover{
  background: linear-gradient(135deg, #1A6035, #134C2A);
}

/* Section */
.ndf-news .section{ padding:44px 0; }
.ndf-news .h2{
  font-size:18px;
  font-weight:900;
  letter-spacing:-.01em;
  margin:0;
}
.ndf-news .sub{
  margin:8px 0 0;
  color:rgba(15,23,42,.72);
  line-height:1.65;
  max-width:92ch;
}

/* Grid */
.ndf-news .grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}

/* Tiles */
.ndf-news .tile{
  position:relative;
  display:block;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.70));
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  transition: .18s ease;
}
.ndf-news .tile::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 220px at 18% 18%, rgba(77,163,255,.14), transparent 62%),
    radial-gradient(440px 220px at 82% 10%, rgba(47,163,107,.16), transparent 62%),
    radial-gradient(520px 260px at 60% 108%, rgba(255,224,130,.14), transparent 64%);
  opacity:.95;
  pointer-events:none;
}
.ndf-news .tile > .in{
  position:relative;
  padding:16px 16px 14px;
  min-height:156px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
}
.ndf-news .label{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,23,42,.58);
}
.ndf-news .tTitle{
  margin:0;
  font-size:18px;
  line-height:1.18;
  letter-spacing:-.01em;
}
.ndf-news .tText{
  margin:0;
  font-size:13px;
  line-height:1.55;
  color:rgba(15,23,42,.72);
}
.ndf-news .tGo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:13px;
  color:rgba(15,23,42,.86);
  padding-bottom:2px;
  border-bottom:1px solid rgba(47,122,74,.28);
  width:fit-content;
}
.ndf-news .tile:hover{
  transform: translateY(-2px);
  box-shadow: var(--sh2);
  border-color: rgba(47,122,74,.36);
  outline: 2px solid rgba(47,122,74,.14);
}

/* Empty helper */
.ndf-news .hint{
  margin-top:14px;
  padding:14px 16px;
  border-radius:18px;
  border:1px dashed rgba(15,23,42,.16);
  background: rgba(255,255,255,.72);
  color: rgba(15,23,42,.72);
  line-height:1.65;
  font-size:13px;
}

@media (max-width: 980px){
  .ndf-news .grid3{ grid-template-columns:1fr; }
  .ndf-news .hero{ padding-top:40px; }
}

/* ===== Partners ===== */
.ndf-partners{
  --bg:#FFFFFF;
  --ink:#0F172A;
  --muted:rgba(15,23,42,.72);
  --line:rgba(15,23,42,.10);

  --g1:#2F7A4A; /* осветлённый зелёный */
  --g2:#256A40;
  --g3:#2FA36B;
  --b1:#4DA3FF;
  --y1:#FFE082;

  --soft:#F3F4F6;
  --r:22px;
  --r2:28px;
  --sh: 0 18px 44px rgba(15,23,42,.10);
  --sh2: 0 26px 62px rgba(15,23,42,.14);

  font-family: Inter, "PT Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
}
.ndf-partners *{box-sizing:border-box}
.ndf-partners a,
.ndf-partners a:visited{color:inherit !important;text-decoration:none !important}
.ndf-partners a:hover{color:inherit !important}

.ndf-partners .wrap{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}
.ndf-partners .hero{
  padding:56px 0 26px;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(1100px 460px at 12% 20%, rgba(77,163,255,.14), transparent 60%),
    radial-gradient(900px 420px at 92% 12%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(760px 360px at 58% 98%, rgba(255,224,130,.14), transparent 60%);
  position:relative;
  overflow:hidden;
}
.ndf-partners .daisyBg{
  position:absolute;
  right:-120px;
  top:-90px;
  width:520px;
  height:520px;
  opacity:.22;
  pointer-events:none;
}
.ndf-partners .daisyBg2{
  position:absolute;
  left:-140px;
  bottom:-240px;
  width:520px;
  height:520px;
  opacity:.14;
  pointer-events:none;
}
.ndf-partners .kicker{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(15,23,42,.62);
}
.ndf-partners .hrow{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
}
.ndf-partners .daisyMark{
  width:34px;
  height:34px;
  flex:0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(15,23,42,.10));
}
.ndf-partners h1{
  margin:0;
  font-size:clamp(30px, 3.5vw, 48px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.ndf-partners .lead{
  margin:12px 0 0;
  font-size:16px;
  line-height:1.72;
  color:rgba(15,23,42,.78);
  max-width:92ch;
}

/* Section */
.ndf-partners .section{ padding:44px 0; }
.ndf-partners .h2{
  font-size:18px;
  font-weight:900;
  letter-spacing:-.01em;
  margin:0;
}
.ndf-partners .sub{
  margin:8px 0 0;
  color:rgba(15,23,42,.72);
  line-height:1.65;
  max-width:92ch;
}

/* Grid */
.ndf-partners .grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.ndf-partners .grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}

/* Tiles */
.ndf-partners .tile{
  position:relative;
  display:block;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.70));
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  transition: .18s ease;
}
.ndf-partners .tile::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 220px at 18% 18%, rgba(77,163,255,.14), transparent 62%),
    radial-gradient(440px 220px at 82% 10%, rgba(47,163,107,.16), transparent 62%),
    radial-gradient(520px 260px at 60% 108%, rgba(255,224,130,.14), transparent 64%);
  opacity:.95;
  pointer-events:none;
}
.ndf-partners .tile > .in{
  position:relative;
  padding:16px 16px 14px;
  min-height:152px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
}
.ndf-partners .label{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,23,42,.58);
}
.ndf-partners .tTitle{
  margin:0;
  font-size:18px;
  line-height:1.18;
  letter-spacing:-.01em;
}
.ndf-partners .tText{
  margin:0;
  font-size:13px;
  line-height:1.55;
  color:rgba(15,23,42,.72);
}
.ndf-partners .tGo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:13px;
  color:rgba(15,23,42,.86);
  padding-bottom:2px;
  border-bottom:1px solid rgba(47,122,74,.28);
  width:fit-content;
}
.ndf-partners .tile:hover{
  transform: translateY(-2px);
  box-shadow: var(--sh2);
  border-color: rgba(47,122,74,.36);
  outline: 2px solid rgba(47,122,74,.14);
}

/* Lists */
.ndf-partners ul{
  margin:12px 0 0;
  padding-left:18px;
  color:rgba(15,23,42,.78);
  line-height:1.7;
}
.ndf-partners li{ margin:6px 0; }

/* CTA */
.ndf-partners .ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.ndf-partners .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none !important;
  font-weight:900;
  font-size:14px;
  border:1px solid rgba(47,122,74,.22);
  background: rgba(47,122,74,.08);
  color: var(--ink) !important;
  transition:.16s ease;
}
.ndf-partners .btn:hover{
  transform: translateY(-1px);
  border-color: rgba(47,122,74,.38);
  background: rgba(47,122,74,.12);
}
.ndf-partners .btnPrimary{
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color:#fff !important;
  border-color:transparent;
}
.ndf-partners .btnPrimary:hover{
  background: linear-gradient(135deg, #1A6035, #134C2A);
}

@media (max-width: 980px){
  .ndf-partners .grid3{ grid-template-columns:1fr; }
  .ndf-partners .grid2{ grid-template-columns:1fr; }
  .ndf-partners .hero{ padding-top:40px; }
}

.ndf-privacy{
  --bg:#FFFFFF; --ink:#0F172A; --line:rgba(15,23,42,.10);
  --g1:#2F7A4A; --g2:#256A40; --b1:#4DA3FF; --y1:#FFE082; --soft:#F3F4F6;
  --r:22px; --r2:28px; --sh:0 18px 44px rgba(15,23,42,.10); --sh2:0 26px 62px rgba(15,23,42,.14);
  font-family: Inter, "PT Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink); background:var(--bg);
}
.ndf-privacy a, .ndf-privacy a:visited, .ndf-privacy a:hover{ color:inherit !important; }
.ndf-privacy .wrap{ width:min(1200px, calc(100% - 40px)); margin:0 auto; }

.ndf-privacy .hero{
  position:relative; padding:56px 0 26px; border-bottom:1px solid var(--line); overflow:hidden;
  background:
    radial-gradient(1100px 460px at 12% 20%, rgba(77,163,255,.14), transparent 60%),
    radial-gradient(900px 420px at 92% 12%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(760px 360px at 58% 98%, rgba(255,224,130,.14), transparent 60%);
}
.ndf-privacy .daisyBg{ position:absolute; right:-120px; top:-90px; width:520px; height:520px; opacity:.22; pointer-events:none; }
.ndf-privacy .kicker{ font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:rgba(15,23,42,.62); }
.ndf-privacy .hrow{ display:flex; align-items:center; gap:12px; margin-top:10px; }
.ndf-privacy .daisyMark{ width:34px; height:34px; flex:0 0 auto; filter: drop-shadow(0 10px 18px rgba(15,23,42,.10)); }
.ndf-privacy h1{ margin:0; font-size:clamp(30px, 3.5vw, 48px); line-height:1.08; letter-spacing:-.02em; }
.ndf-privacy .lead{ margin:12px 0 0; font-size:16px; line-height:1.72; color:rgba(15,23,42,.78); max-width:92ch; }

.ndf-privacy .section{ padding:44px 0; }
.ndf-privacy .sectionSoft{ background:var(--soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

.ndf-privacy .panel{
  border-radius: var(--r2);
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  box-shadow: var(--sh);
  padding:22px;
}
.ndf-privacy .label{ font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:rgba(15,23,42,.58); }
.ndf-privacy .h2{ margin:10px 0 8px; font-size:26px; letter-spacing:-.02em; line-height:1.12; }
.ndf-privacy .p{ margin:0; color:rgba(15,23,42,.74); font-size:15px; line-height:1.70; }
.ndf-privacy .list{ margin:12px 0 0; padding-left:18px; color:rgba(15,23,42,.74); font-size:15px; line-height:1.70; }
.ndf-privacy .list li{ margin:8px 0; }
.ndf-privacy .btnRow{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.ndf-privacy .btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:999px; text-decoration:none !important;
  font-weight:900; font-size:14px; border:1px solid rgba(47,122,74,.22);
  background: rgba(47,122,74,.08); color: var(--ink) !important; transition:.16s ease;
}
.ndf-privacy .btn:hover{ transform: translateY(-1px); border-color: rgba(47,122,74,.38); background: rgba(47,122,74,.12); }
.ndf-privacy .btnPrimary{ background: linear-gradient(135deg, var(--g1), var(--g2)); color:#fff !important; border-color:transparent; }
.ndf-privacy .btnPrimary:hover{ background: linear-gradient(135deg, #1A6035, #134C2A); }

/* ===== Documents ===== */
.ndf-docs{
  --bg:#FFFFFF;
  --ink:#0F172A;
  --muted:rgba(15,23,42,.72);
  --line:rgba(15,23,42,.10);

  --g1:#2F7A4A; /* осветлённый зелёный */
  --g2:#256A40;
  --g3:#2FA36B;
  --b1:#4DA3FF;
  --y1:#FFE082;

  --soft:#F3F4F6;
  --r:22px;
  --r2:28px;
  --sh: 0 18px 44px rgba(15,23,42,.10);
  --sh2: 0 26px 62px rgba(15,23,42,.14);

  font-family: Inter, "PT Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
}
.ndf-docs *{box-sizing:border-box}
.ndf-docs a,
.ndf-docs a:visited{color:inherit !important;text-decoration:none !important}
.ndf-docs a:hover{color:inherit !important}

.ndf-docs .wrap{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}
.ndf-docs .hero{
  padding:56px 0 26px;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(1100px 460px at 12% 20%, rgba(77,163,255,.14), transparent 60%),
    radial-gradient(900px 420px at 92% 12%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(760px 360px at 58% 98%, rgba(255,224,130,.14), transparent 60%);
  position:relative;
  overflow:hidden;
}
.ndf-docs .daisyBg{
  position:absolute;
  right:-120px;
  top:-90px;
  width:520px;
  height:520px;
  opacity:.22;
  pointer-events:none;
}
.ndf-docs .kicker{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(15,23,42,.62);
}
.ndf-docs .hrow{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
}
.ndf-docs .daisyMark{
  width:34px;
  height:34px;
  flex:0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(15,23,42,.10));
}
.ndf-docs h1{
  margin:0;
  font-size:clamp(30px, 3.5vw, 48px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.ndf-docs .lead{
  margin:12px 0 0;
  font-size:16px;
  line-height:1.72;
  color:rgba(15,23,42,.78);
  max-width:92ch;
}

/* Section */
.ndf-docs .section{ padding:44px 0; }
.ndf-docs .h2{
  font-size:18px;
  font-weight:900;
  letter-spacing:-.01em;
  margin:0;
}
.ndf-docs .sub{
  margin:8px 0 0;
  color:rgba(15,23,42,.72);
  line-height:1.65;
  max-width:92ch;
}

/* Grid */
.ndf-docs .grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}

/* Tiles */
.ndf-docs .tile{
  position:relative;
  display:block;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.70));
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  transition: .18s ease;
}
.ndf-docs .tile::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 220px at 18% 18%, rgba(77,163,255,.14), transparent 62%),
    radial-gradient(440px 220px at 82% 10%, rgba(47,163,107,.16), transparent 62%),
    radial-gradient(520px 260px at 60% 108%, rgba(255,224,130,.14), transparent 64%);
  opacity:.95;
  pointer-events:none;
}
.ndf-docs .tile > .in{
  position:relative;
  padding:16px 16px 14px;
  min-height:152px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
}
.ndf-docs .label{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,23,42,.58);
}
.ndf-docs .tTitle{
  margin:0;
  font-size:18px;
  line-height:1.18;
  letter-spacing:-.01em;
}
.ndf-docs .tText{
  margin:0;
  font-size:13px;
  line-height:1.55;
  color:rgba(15,23,42,.72);
}
.ndf-docs .tGo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:13px;
  color:rgba(15,23,42,.86);
  padding-bottom:2px;
  border-bottom:1px solid rgba(47,122,74,.28);
  width:fit-content;
}
.ndf-docs .tile:hover{
  transform: translateY(-2px);
  box-shadow: var(--sh2);
  border-color: rgba(47,122,74,.36);
  outline: 2px solid rgba(47,122,74,.14);
}

@media (max-width: 980px){
  .ndf-docs .grid3{ grid-template-columns:1fr; }
  .ndf-docs .hero{ padding-top:40px; }
}

.ndf-contacts{
  --bg:#FFFFFF; --ink:#0F172A; --line:rgba(15,23,42,.10);
  --g1:#2F7A4A; --g2:#256A40; --b1:#4DA3FF; --y1:#FFE082; --soft:#F3F4F6;
  --r:22px; --r2:28px; --sh:0 18px 44px rgba(15,23,42,.10); --sh2:0 26px 62px rgba(15,23,42,.14);
  font-family: Inter, "PT Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink); background:var(--bg);
}
.ndf-contacts a, .ndf-contacts a:visited, .ndf-contacts a:hover{ color:inherit !important; }
.ndf-contacts .wrap{ width:min(1200px, calc(100% - 40px)); margin:0 auto; }

.ndf-contacts .hero{
  position:relative; padding:56px 0 26px; border-bottom:1px solid var(--line); overflow:hidden;
  background:
    radial-gradient(1100px 460px at 12% 20%, rgba(77,163,255,.14), transparent 60%),
    radial-gradient(900px 420px at 92% 12%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(760px 360px at 58% 98%, rgba(255,224,130,.14), transparent 60%);
}
.ndf-contacts .daisyBg{ position:absolute; right:-120px; top:-90px; width:520px; height:520px; opacity:.22; pointer-events:none; }
.ndf-contacts .kicker{ font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:rgba(15,23,42,.62); }
.ndf-contacts .hrow{ display:flex; align-items:center; gap:12px; margin-top:10px; }
.ndf-contacts .daisyMark{ width:34px; height:34px; flex:0 0 auto; filter: drop-shadow(0 10px 18px rgba(15,23,42,.10)); }
.ndf-contacts h1{ margin:0; font-size:clamp(30px, 3.5vw, 48px); line-height:1.08; letter-spacing:-.02em; }
.ndf-contacts .lead{ margin:12px 0 0; font-size:16px; line-height:1.72; color:rgba(15,23,42,.78); max-width:92ch; }

.ndf-contacts .section{ padding:44px 0; }
.ndf-contacts .sectionSoft{ background:var(--soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

.ndf-contacts .grid2{ display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:16px; }

.ndf-contacts .panel{
  border-radius: var(--r2);
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  box-shadow: var(--sh);
  padding:22px;
}
.ndf-contacts .label{ font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:rgba(15,23,42,.58); }
.ndf-contacts .kv{ margin-top:12px; display:grid; gap:10px; }
.ndf-contacts .kvRow{
  display:flex; flex-wrap:wrap; align-items:baseline; gap:10px;
  padding:12px 14px; border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.80);
}
.ndf-contacts .k{ font-weight:900; color:rgba(15,23,42,.72); min-width:160px; }
.ndf-contacts .v{ color:rgba(15,23,42,.82); }
.ndf-contacts .btnRow{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.ndf-contacts .btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:999px; text-decoration:none !important;
  font-weight:900; font-size:14px; border:1px solid rgba(47,122,74,.22);
  background: rgba(47,122,74,.08); color: var(--ink) !important; transition:.16s ease;
}
.ndf-contacts .btn:hover{ transform: translateY(-1px); border-color: rgba(47,122,74,.38); background: rgba(47,122,74,.12); }
.ndf-contacts .btnPrimary{ background: linear-gradient(135deg, var(--g1), var(--g2)); color:#fff !important; border-color:transparent; }
.ndf-contacts .btnPrimary:hover{ background: linear-gradient(135deg, #1A6035, #134C2A); }
.ndf-contacts .note{
  margin-top:12px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
  padding:14px;
  color:rgba(15,23,42,.74);
  font-size:14px;
  line-height:1.65;
}
@media (max-width: 980px){
  .ndf-contacts .grid2{ grid-template-columns:1fr; }
  .ndf-contacts .hero{ padding-top:40px; }
  .ndf-contacts .k{ min-width:auto; }
}

/* ===== Archive ===== */
.ndf-archive{
  --bg:#FFFFFF;
  --ink:#0F172A;
  --muted:rgba(15,23,42,.72);
  --line:rgba(15,23,42,.10);

  --g1:#2F7A4A;
  --g2:#256A40;
  --g3:#2FA36B;
  --b1:#4DA3FF;
  --y1:#FFE082;

  --soft:#F3F4F6;
  --r:22px;
  --r2:28px;
  --sh: 0 18px 44px rgba(15,23,42,.10);
  --sh2: 0 26px 62px rgba(15,23,42,.14);

  font-family: Inter, "PT Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:transparent;
}
.ndf-archive *{box-sizing:border-box}
.ndf-archive a, .ndf-archive a:visited{color:inherit !important; text-decoration:none !important}
.ndf-archive a:hover{color:inherit !important}

.ndf-archive .wrap{ width:min(1200px, calc(100% - 40px)); margin:0 auto; }

.ndf-archive .hero{
  margin: 10px auto 0;
  padding:56px 0 26px;
  border:1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--sh);
  background:
    radial-gradient(1100px 460px at 12% 20%, rgba(77,163,255,.14), transparent 60%),
    radial-gradient(900px 420px at 92% 12%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(760px 360px at 58% 98%, rgba(255,224,130,.14), transparent 60%),
    #FFFFFF;
  position:relative;
  overflow:hidden;
}
.ndf-archive .daisyBg{
  position:absolute;
  right:-120px;
  top:-90px;
  width:520px;
  height:520px;
  opacity:.22;
  pointer-events:none;
}
.ndf-archive .kicker{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(15,23,42,.62);
}
.ndf-archive .hrow{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
}
.ndf-archive .daisyMark{
  width:34px;
  height:34px;
  flex:0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(15,23,42,.10));
}
.ndf-archive h1{
  margin:0;
  font-size:clamp(30px, 3.5vw, 48px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.ndf-archive .lead{
  margin:12px 0 0;
  font-size:16px;
  line-height:1.72;
  color:rgba(15,23,42,.78);
  max-width:92ch;
}

.ndf-archive .section{ padding:44px 0; }
.ndf-archive .sectionSoft{
  background: var(--soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.ndf-archive .h2{
  font-size:18px;
  font-weight:900;
  letter-spacing:-.01em;
  margin:0;
}
.ndf-archive .sub{
  margin:8px 0 0;
  color:rgba(15,23,42,.72);
  line-height:1.65;
  max-width:92ch;
  font-size:13.5px;
}

/* Grid */
.ndf-archive .grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.ndf-archive .grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}

/* Tiles */
.ndf-archive .tile{
  position:relative;
  display:block;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.70));
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  transition: .18s ease;
}
.ndf-archive .tile::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 220px at 18% 18%, rgba(77,163,255,.14), transparent 62%),
    radial-gradient(440px 220px at 82% 10%, rgba(47,163,107,.16), transparent 62%),
    radial-gradient(520px 260px at 60% 108%, rgba(255,224,130,.14), transparent 64%);
  opacity:.95;
  pointer-events:none;
}
.ndf-archive .tile > .in{
  position:relative;
  padding:16px 16px 14px;
  min-height:178px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
}
.ndf-archive .label{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,23,42,.58);
}
.ndf-archive .tTitle{
  margin:6px 0 0;
  font-size:18px;
  line-height:1.18;
  letter-spacing:-.01em;
}
.ndf-archive .tText{
  margin:8px 0 0;
  font-size:13px;
  line-height:1.55;
  color:rgba(15,23,42,.72);
}
.ndf-archive .tGo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  /* вид кнопки */
  padding:10px 14px;
  border-radius:999px;
  border:none;                 /* без обводки */
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color:#fff;

  font-weight:900;
  font-size:13px;
  letter-spacing:.01em;

  cursor:pointer;
  user-select:none;

  box-shadow: 0 12px 26px rgba(15,23,42,.14);
  transition: .16s ease;
}

.ndf-archive .tGo:hover{
  transform: translateY(-1px);
  background: linear-gradient(135deg, #1A6035, #134C2A);
  box-shadow: 0 18px 44px rgba(15,23,42,.18);
}

.ndf-archive .tGo:active{
  transform: translateY(0px);
  box-shadow: 0 10px 22px rgba(15,23,42,.14);
}

.ndf-archive .tGo:focus-visible{
  outline: 3px solid rgba(77,163,255,.28);
  outline-offset: 2px;
}
.ndf-archive .tile:hover{
  transform: translateY(-2px);
  box-shadow: var(--sh2);
  border-color: rgba(47,122,74,.36);
  outline: 2px solid rgba(47,122,74,.14);
}

/* CTA */
.ndf-archive .ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.ndf-archive .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none !important;
  font-weight:900;
  font-size:14px;
  border:1px solid rgba(47,122,74,.22);
  background: rgba(47,122,74,.08);
  color: var(--ink) !important;
  transition:.16s ease;
}
.ndf-archive .btn:hover{
  transform: translateY(-1px);
  border-color: rgba(47,122,74,.38);
  background: rgba(47,122,74,.12);
}
.ndf-archive .btnPrimary{
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color:#fff !important;
  border-color:transparent;
}
.ndf-archive .btnPrimary:hover{
  background: linear-gradient(135deg, #1A6035, #134C2A);
}

/* Modal */
.ndf-archive .modal{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;

  /* центр экрана */
  align-items:center;
  justify-content:center;

  padding: 24px;
  background: rgba(15,23,42,.52);
}
.ndf-archive .modal.is-show{display:flex}
.ndf-archive .sheet{
  width:min(760px, 100%);
  max-height: min(80vh, 900px); /* чтобы не вылезало */
  overflow:auto;

  border-radius: 26px;
  border:none;

  background: #FFFFFF;
  box-shadow:
    0 40px 90px rgba(15,23,42,.35),
    0 0 0 1px rgba(15,23,42,.06);
}

.ndf-archive .sheetTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding: 12px 12px;
  border-bottom:1px solid rgba(15,23,42,.10);
}
.ndf-archive .sheetTop b{font-size:14px}
.ndf-archive .close{
  border:1px solid rgba(15,23,42,.12);
  background: rgba(15,23,42,.04);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight:900;
  cursor:pointer;
}
.ndf-archive .sheetBody{
  padding: 12px 12px 14px;
  color: rgba(15,23,42,.78);
}
.ndf-archive .sheetBody p{
  margin:0;
  font-size:13.5px;
  line-height:1.65;
}
.ndf-archive .sheetBody .gap{height:10px}
.ndf-archive .list{
  margin:10px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
}
.ndf-archive .li{
  padding:10px 10px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  font-size:13px;
  line-height:1.55;
}
.ndf-archive .linkRow{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.ndf-archive .linkBtn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(47,122,74,.22);
  background: rgba(47,122,74,.08);
  font-weight:900;
  font-size:13px;
  transition:.16s ease;
}
.ndf-archive .linkBtn:hover{
  transform: translateY(-1px);
  background: rgba(47,122,74,.12);
  border-color: rgba(47,122,74,.32);
}
.ndf-archive .linkBtn svg{width:18px;height:18px;opacity:.92}

/* Responsive */
@media (max-width: 980px){
  .ndf-archive .grid3{ grid-template-columns:1fr; }
  .ndf-archive .grid2{ grid-template-columns:1fr; }
  .ndf-archive .hero{ padding-top:40px; }
}

/* ===== Animatika ===== */
.ndf-animatika{
  --bg:#FFFFFF;
  --ink:#0F172A;
  --muted:rgba(15,23,42,.72);
  --line:rgba(15,23,42,.10);

  --g1:#2F7A4A;
  --g2:#256A40;
  --g3:#2FA36B;

  --b1:#4DA3FF;
  --y1:#FFE082;

  --soft:#F3F4F6;
  --r:22px;
  --r2:28px;
  --sh: 0 18px 44px rgba(15,23,42,.10);
  --sh2: 0 26px 62px rgba(15,23,42,.14);

  font-family: Inter, "PT Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:transparent;
}
.ndf-animatika *{box-sizing:border-box}
.ndf-animatika a,
.ndf-animatika a:visited{color:inherit !important;text-decoration:none !important}
.ndf-animatika a:hover{color:inherit !important}

.ndf-animatika .wrap{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}

/* HERO */
.ndf-animatika .hero{
  margin: 10px auto 0;
  padding:56px 0 26px;
  border:1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--sh);
  background:
    radial-gradient(1100px 460px at 12% 20%, rgba(77,163,255,.14), transparent 60%),
    radial-gradient(900px 420px at 92% 12%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(760px 360px at 58% 98%, rgba(255,224,130,.14), transparent 60%),
    #FFFFFF;
  position:relative;
  overflow:hidden;
}
.ndf-animatika .daisyBg{
  position:absolute;
  right:-120px;
  top:-90px;
  width:520px;
  height:520px;
  opacity:.18;
  pointer-events:none;
}
.ndf-animatika .kicker{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(15,23,42,.62);
}
.ndf-animatika .hrow{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
}
.ndf-animatika .daisyMark{
  width:34px;
  height:34px;
  flex:0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(15,23,42,.10));
}
.ndf-animatika h1{
  margin:0;
  font-size:clamp(30px, 3.5vw, 46px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.ndf-animatika .lead{
  margin:12px 0 0;
  font-size:16px;
  line-height:1.72;
  color:rgba(15,23,42,.78);
  max-width:92ch;
}
.ndf-animatika .meta{
  margin:10px 0 0;
  font-size:13px;
  line-height:1.65;
  color:rgba(15,23,42,.66);
  max-width:100ch;
}

/* Buttons */
.ndf-animatika .ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.ndf-animatika .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none !important;
  font-weight:900;
  font-size:14px;
  border:1px solid rgba(47,122,74,.22);
  background: rgba(47,122,74,.08);
  color: var(--ink) !important;
  transition:.16s ease;
}
.ndf-animatika .btn:hover{
  transform: translateY(-1px);
  border-color: rgba(47,122,74,.38);
  background: rgba(47,122,74,.12);
}
.ndf-animatika .btnPrimary{
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color:#fff !important;
  border-color:transparent;
}
.ndf-animatika .btnPrimary:hover{
  background: linear-gradient(135deg, #1A6035, #134C2A);
}

/* Sections */
.ndf-animatika .section{ padding:34px 0 44px; }
.ndf-animatika .panel{
  background:#FFFFFF;
  border:1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--sh);
  overflow:hidden;
}
.ndf-animatika .panelIn{ padding:18px 18px 18px; }
.ndf-animatika .h2{
  margin:0;
  font-size:18px;
  font-weight:900;
  letter-spacing:-.01em;
}
.ndf-animatika .sub{
  margin:8px 0 0;
  color:rgba(15,23,42,.72);
  line-height:1.65;
  max-width:92ch;
  font-size:13.5px;
}

/* Timeline */
.ndf-animatika .tl{
  margin-top:16px;
  position:relative;
  padding: 12px 0 6px;
}
.ndf-animatika .tl::before{
  content:"";
  position:absolute;
  left: 14px;
  top: 10px;
  bottom: 10px;
  width:2px;
  background: linear-gradient(to bottom, rgba(47,163,107,.55), rgba(77,163,255,.35));
  border-radius:2px;
}
.ndf-animatika .tlItem{
  position:relative;
  display:grid;
  grid-template-columns: 38px 1fr;
  gap:12px;
  padding: 10px 0;
}
.ndf-animatika .tlDotBtn{
  width:30px;
  height:30px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background:
    radial-gradient(circle at 30% 28%, rgba(255,224,130,.95), rgba(255,224,130,.35) 42%, rgba(255,255,255,.65) 62%),
    linear-gradient(135deg, rgba(47,163,107,.22), rgba(77,163,255,.18));
  box-shadow: 0 10px 22px rgba(15,23,42,.08);
  cursor:pointer;
  position:relative;
  display:grid;
  place-items:center;
  transition:.16s ease;
  outline:none;
}
.ndf-animatika .tlDotBtn:hover{
  transform: translateY(-1px);
  box-shadow: var(--sh2);
  border-color: rgba(47,122,74,.28);
}
.ndf-animatika .tlDotBtn:focus-visible{
  outline: 3px solid rgba(77,163,255,.28);
  outline-offset: 2px;
}
.ndf-animatika .tlDotBtn .dot{
  width:10px;height:10px;border-radius:999px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  box-shadow: 0 6px 14px rgba(15,23,42,.16);
}
.ndf-animatika .tlMain{ min-width:0; }
.ndf-animatika .tlYear{
  font-weight:900;
  font-size:14px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color: rgba(15,23,42,.72);
}
.ndf-animatika .tlTitle{
  margin-top:6px;
  font-size:16px;
  font-weight:900;
  letter-spacing:-.01em;
}
.ndf-animatika .tlText{
  margin-top:6px;
  font-size:13px;
  line-height:1.6;
  color: rgba(15,23,42,.72);
  max-width: 95ch;
}

/* Active state (clicked year) */
.ndf-animatika .tlItem.is-open .tlDotBtn{
  border-color: rgba(47,122,74,.38);
  box-shadow: 0 18px 44px rgba(15,23,42,.14);
}
.ndf-animatika .tlItem.is-open .tlDotBtn .dot{
  background: linear-gradient(135deg, #1A6035, #134C2A);
}

/* IMPORTANT: inline popups disabled (click opens centered modal only) */
.ndf-animatika .tlPop{ display:none !important; }

/* Hint */
.ndf-animatika .hint{
  margin-top:10px;
  font-size:12px;
  color: rgba(15,23,42,.58);
}

/* Modal (centered) */
.ndf-animatika .modal{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;

  align-items:center;
  justify-content:center;

  padding: 24px;
  background: rgba(15,23,42,.52);
}
.ndf-animatika .modal.is-show{display:flex}

.ndf-animatika .sheet{
  width:min(760px, 100%);
  max-height:min(80vh, 900px);
  display:flex;
  flex-direction:column;

  border-radius:26px;
  border:none;

  background:#FFFFFF;
  box-shadow:
    0 40px 90px rgba(15,23,42,.35),
    0 0 0 1px rgba(15,23,42,.06);
  overflow:hidden;
}
.ndf-animatika .sheetTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 12px;
  border-bottom:1px solid rgba(15,23,42,.10);
  position:sticky;
  top:0;
  background:#FFFFFF;
  z-index:2;
}
.ndf-animatika .sheetTop b{font-size:14px}
.ndf-animatika .close{
  border:none;
  background: rgba(15,23,42,.06);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight:900;
  cursor:pointer;
  transition:.14s ease;
}
.ndf-animatika .close:hover{
  background: rgba(15,23,42,.10);
  transform: translateY(-1px);
}
.ndf-animatika .sheetBody{
  flex:1 1 auto;
  overflow:auto;
  min-height:0;
  padding:12px 12px 24px;
  color:rgba(15,23,42,.78);
  scrollbar-gutter:stable;
}

/* Links inside modal */
.ndf-animatika .pLinks{
  margin-top:10px;
  display:grid;
  gap:8px;
}
.ndf-animatika .pLink{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 10px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  transition:.14s ease;
}
.ndf-animatika .pLink:hover{
  transform: translateY(-1px);
  border-color: rgba(47,122,74,.24);
  box-shadow: var(--sh);
}
.ndf-animatika .pLink .l{
  display:grid;
  gap:2px;
  min-width:0;
}
.ndf-animatika .pLink .l b{
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.ndf-animatika .pLink .l span{
  font-size:12px;
  color: rgba(15,23,42,.62);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.ndf-animatika .pLink .a{
  width:34px;height:34px;border-radius:14px;
  display:grid;place-items:center;
  background: rgba(47,122,74,.10);
  border:1px solid rgba(47,122,74,.18);
  flex:0 0 auto;
}
.ndf-animatika .pLink svg{width:18px;height:18px;opacity:.92}
.ndf-animatika .pLinks{
  margin-top:10px;
  display:grid;
  gap:8px;
  padding-bottom:8px;
}

.ndf-animatika .pLink:last-child{
  margin-bottom:2px;
}
/* Responsive */
@media (max-width: 980px){
  .ndf-animatika .hero{padding-top:40px}
  .ndf-animatika .modal{padding: 18px 14px;}
  .ndf-animatika .tl::before{left: 13px}
  .ndf-animatika .tlItem{grid-template-columns: 38px 1fr}
}

.ndf-legacy{
  --bg:#FFFFFF; --ink:#0F172A; --line:rgba(15,23,42,.10);
  --g1:#1F6B3B; --g2:#16552F; --b1:#4DA3FF; --y1:#FFE082; --soft:#F3F4F6;
  --r:22px; --r2:28px; --sh:0 18px 44px rgba(15,23,42,.10); --sh2:0 26px 62px rgba(15,23,42,.14);
  font-family: Inter, "PT Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink); background:var(--bg);
}
.ndf-legacy a, .ndf-legacy a:visited, .ndf-legacy a:hover{ color:inherit !important; }
.ndf-legacy .wrap{ width:min(1200px, calc(100% - 40px)); margin:0 auto; }

.ndf-legacy .hero{
  position:relative; padding:56px 0 26px; border-bottom:1px solid var(--line); overflow:hidden;
  background:
    radial-gradient(1100px 460px at 12% 20%, rgba(77,163,255,.14), transparent 60%),
    radial-gradient(900px 420px at 92% 12%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(760px 360px at 58% 98%, rgba(255,224,130,.14), transparent 60%);
}
.ndf-legacy .daisyBg{ position:absolute; right:-120px; top:-90px; width:520px; height:520px; opacity:.22; pointer-events:none; }
.ndf-legacy .kicker{ font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:rgba(15,23,42,.62); }
.ndf-legacy .hrow{ display:flex; align-items:center; gap:12px; margin-top:10px; }
.ndf-legacy .daisyMark{ width:34px; height:34px; flex:0 0 auto; filter: drop-shadow(0 10px 18px rgba(15,23,42,.10)); }
.ndf-legacy h1{ margin:0; font-size:clamp(30px, 3.5vw, 48px); line-height:1.08; letter-spacing:-.02em; }
.ndf-legacy .lead{ margin:12px 0 0; font-size:16px; line-height:1.72; color:rgba(15,23,42,.78); max-width:92ch; }

.ndf-legacy .btnRow{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.ndf-legacy .btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:999px; text-decoration:none !important;
  font-weight:900; font-size:14px; border:1px solid rgba(31,107,59,.22);
  background: rgba(31,107,59,.08); color: var(--ink) !important; transition:.16s ease;
}
.ndf-legacy .btn:hover{ transform: translateY(-1px); border-color: rgba(31,107,59,.38); background: rgba(31,107,59,.12); }
.ndf-legacy .btnPrimary{ background: linear-gradient(135deg, #1F6B3B, #16552F); color:#fff !important; border-color:transparent; }
.ndf-legacy .btnPrimary:hover{ background: linear-gradient(135deg, #1A6035, #134C2A); }

.ndf-legacy .section{ padding:44px 0; }
.ndf-legacy .sectionSoft{ background:var(--soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

.ndf-legacy .grid2{ display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:16px; }
.ndf-legacy .tile{
  position:relative; display:block; text-decoration:none !important;
  border-radius:20px; overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.70));
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  transition:.18s ease;
}
.ndf-legacy .tile::before{
  content:""; position:absolute; inset:-2px;
  background:
    radial-gradient(420px 220px at 18% 18%, rgba(77,163,255,.12), transparent 62%),
    radial-gradient(440px 220px at 82% 10%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(520px 260px at 60% 108%, rgba(255,224,130,.12), transparent 64%);
  opacity:.95; pointer-events:none;
}
.ndf-legacy .tile:hover{
  transform: translateY(-2px);
  box-shadow: var(--sh2);
  border-color: rgba(31,107,59,.36);
  outline: 2px solid rgba(31,107,59,.12);
}
.ndf-legacy .in{ position:relative; padding:18px; display:flex; flex-direction:column; gap:10px; min-height:160px; }
.ndf-legacy .label{ font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:rgba(15,23,42,.58); }
.ndf-legacy .tTitle{ margin:0; font-size:18px; line-height:1.18; letter-spacing:-.01em; }
.ndf-legacy .tText{ margin:0; font-size:13px; line-height:1.60; color:rgba(15,23,42,.74); }
.ndf-legacy .quote{
  border-radius:20px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  padding:18px;
  color:rgba(15,23,42,.78);
  font-size:15px;
  line-height:1.70;
}
@media (max-width: 980px){
  .ndf-legacy .grid2{ grid-template-columns:1fr; }
  .ndf-legacy .hero{ padding-top:40px; }
}

/* ===== Child Animation ===== */
.ndf-childanim{
  --bg:#FFFFFF;
  --ink:#0F172A;
  --muted:rgba(15,23,42,.72);
  --line:rgba(15,23,42,.10);

  --g1:#2F7A4A;
  --g2:#256A40;
  --g3:#2FA36B;
  --b1:#4DA3FF;
  --y1:#FFE082;

  --soft:#F3F4F6;
  --r:22px;
  --r2:28px;
  --sh: 0 18px 44px rgba(15,23,42,.10);
  --sh2: 0 26px 62px rgba(15,23,42,.14);

  font-family: Inter, "PT Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
}
.ndf-childanim *{box-sizing:border-box}
.ndf-childanim a, .ndf-childanim a:visited{color:inherit !important; text-decoration:none !important}
.ndf-childanim a:hover{color:inherit !important}

.ndf-childanim .wrap{ width:min(1200px, calc(100% - 40px)); margin:0 auto; }

.ndf-childanim .hero{
  padding:56px 0 26px;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(1100px 460px at 12% 20%, rgba(77,163,255,.14), transparent 60%),
    radial-gradient(900px 420px at 92% 12%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(760px 360px at 58% 98%, rgba(255,224,130,.14), transparent 60%);
  position:relative;
  overflow:hidden;
}
.ndf-childanim .daisyBg{
  position:absolute;
  right:-120px;
  top:-90px;
  width:520px;
  height:520px;
  opacity:.22;
  pointer-events:none;
}
.ndf-childanim .kicker{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(15,23,42,.62);
}
.ndf-childanim .hrow{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
}
.ndf-childanim .daisyMark{
  width:34px;
  height:34px;
  flex:0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(15,23,42,.10));
}
.ndf-childanim h1{
  margin:0;
  font-size:clamp(30px, 3.5vw, 48px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.ndf-childanim .lead{
  margin:12px 0 0;
  font-size:16px;
  line-height:1.72;
  color:rgba(15,23,42,.78);
  max-width:92ch;
}

/* Sections */
.ndf-childanim .section{ padding:44px 0; }
.ndf-childanim .sectionSoft{
  background:var(--soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.ndf-childanim .h2{
  font-size:18px;
  font-weight:900;
  letter-spacing:-.01em;
  margin:0;
}
.ndf-childanim .sub{
  margin:8px 0 0;
  color:rgba(15,23,42,.72);
  line-height:1.65;
  max-width:92ch;
}

.ndf-childanim .grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.ndf-childanim .grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}

/* Tiles */
.ndf-childanim .tile{
  position:relative;
  display:block;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.70));
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  transition: .18s ease;
}
.ndf-childanim .tile::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 220px at 18% 18%, rgba(77,163,255,.14), transparent 62%),
    radial-gradient(440px 220px at 82% 10%, rgba(47,163,107,.16), transparent 62%),
    radial-gradient(520px 260px at 60% 108%, rgba(255,224,130,.14), transparent 64%);
  opacity:.95;
  pointer-events:none;
}
.ndf-childanim .tile > .in{
  position:relative;
  padding:16px 16px 14px;
  min-height:168px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
}
.ndf-childanim .label{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,23,42,.58);
}
.ndf-childanim .tTitle{
  margin:0;
  font-size:18px;
  line-height:1.18;
  letter-spacing:-.01em;
}
.ndf-childanim .tText{
  margin:0;
  font-size:13px;
  line-height:1.55;
  color:rgba(15,23,42,.72);
}
.ndf-childanim .tGo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:13px;
  color:rgba(15,23,42,.86);
  padding-bottom:2px;
  border-bottom:1px solid rgba(47,122,74,.28);
  width:fit-content;
}
.ndf-childanim .tile:hover{
  transform: translateY(-2px);
  box-shadow: var(--sh2);
  border-color: rgba(47,122,74,.36);
  outline: 2px solid rgba(47,122,74,.14);
}

/* Buttons */
.ndf-childanim .ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.ndf-childanim .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none !important;
  font-weight:900;
  font-size:14px;
  border:1px solid rgba(47,122,74,.22);
  background: rgba(47,122,74,.08);
  color: var(--ink) !important;
  transition:.16s ease;
}
.ndf-childanim .btn:hover{
  transform: translateY(-1px);
  border-color: rgba(47,122,74,.38);
  background: rgba(47,122,74,.12);
}
.ndf-childanim .btnPrimary{
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color:#fff !important;
  border-color:transparent;
}
.ndf-childanim .btnPrimary:hover{
  background: linear-gradient(135deg, #1A6035, #134C2A);
}

@media (max-width: 980px){
  .ndf-childanim .grid2{ grid-template-columns:1fr; }
  .ndf-childanim .grid3{ grid-template-columns:1fr; }
  .ndf-childanim .hero{ padding-top:40px; }
}

/* ===== Education ===== */
.ndf-edu{
  --bg:#FFFFFF;
  --ink:#0F172A;
  --muted:rgba(15,23,42,.72);
  --line:rgba(15,23,42,.10);

  --g1:#2F7A4A;
  --g2:#256A40;
  --g3:#2FA36B;
  --b1:#4DA3FF;
  --y1:#FFE082;

  --soft:#F3F4F6;
  --r:22px;
  --r2:28px;
  --sh: 0 18px 44px rgba(15,23,42,.10);
  --sh2: 0 26px 62px rgba(15,23,42,.14);

  font-family: Inter, "PT Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:transparent;
}
.ndf-edu *{box-sizing:border-box}
.ndf-edu a, .ndf-edu a:visited{color:inherit !important; text-decoration:none !important}
.ndf-edu a:hover{color:inherit !important}

.ndf-edu .wrap{ width:min(1200px, calc(100% - 40px)); margin:0 auto; }

/* HERO */
.ndf-edu .hero{
  margin: 10px auto 0;
  padding:56px 0 26px;
  border:1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--sh);
  background:
    radial-gradient(1100px 460px at 12% 20%, rgba(77,163,255,.14), transparent 60%),
    radial-gradient(900px 420px at 92% 12%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(760px 360px at 58% 98%, rgba(255,224,130,.14), transparent 60%),
    #FFFFFF;
  position:relative;
  overflow:hidden;
}
.ndf-edu .daisyBg{
  position:absolute;
  right:-120px;
  top:-90px;
  width:520px;
  height:520px;
  opacity:.18;
  pointer-events:none;
}
.ndf-edu .kicker{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(15,23,42,.62);
}
.ndf-edu .hrow{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
}
.ndf-edu .daisyMark{
  width:34px;
  height:34px;
  flex:0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(15,23,42,.10));
}
.ndf-edu h1{
  margin:0;
  font-size:clamp(30px, 3.5vw, 48px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.ndf-edu .lead{
  margin:12px 0 0;
  font-size:16px;
  line-height:1.72;
  color:rgba(15,23,42,.78);
  max-width:92ch;
}
.ndf-edu .meta{
  margin:10px 0 0;
  font-size:13px;
  line-height:1.65;
  color:rgba(15,23,42,.66);
  max-width:100ch;
}

/* KPIs */
.ndf-edu .kpis{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.ndf-edu .kpi{
  border-radius:20px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  padding:14px 14px 12px;
}
.ndf-edu .kpi .t{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,23,42,.58);
}
.ndf-edu .kpi .v{
  margin-top:8px;
  font-size:15px;
  line-height:1.35;
  color:rgba(15,23,42,.86);
}
.ndf-edu .kpi .v b{
  color:rgba(15,23,42,.92);
}

/* Buttons */
.ndf-edu .ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.ndf-edu .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none !important;
  font-weight:900;
  font-size:14px;
  border:1px solid rgba(47,122,74,.22);
  background: rgba(47,122,74,.08);
  color: var(--ink) !important;
  transition:.16s ease;
}
.ndf-edu .btn:hover{
  transform: translateY(-1px);
  border-color: rgba(47,122,74,.38);
  background: rgba(47,122,74,.12);
}
.ndf-edu .btnPrimary{
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color:#fff !important;
  border-color:transparent;
}
.ndf-edu .btnPrimary:hover{
  background: linear-gradient(135deg, #1A6035, #134C2A);
}

/* Sections */
.ndf-edu .section{ padding:34px 0 44px; }
.ndf-edu .panel{
  background:#FFFFFF;
  border:1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--sh);
  overflow:hidden;
}
.ndf-edu .panelIn{ padding:18px 18px 18px; }
.ndf-edu .h2{
  margin:0;
  font-size:18px;
  font-weight:900;
  letter-spacing:-.01em;
}
.ndf-edu .sub{
  margin:8px 0 0;
  color:rgba(15,23,42,.72);
  line-height:1.65;
  max-width:92ch;
}

/* Tiles */
.ndf-edu .grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}
.ndf-edu .tile{
  position:relative;
  display:block;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.70));
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  transition: .18s ease;
}
.ndf-edu .tile::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 220px at 18% 18%, rgba(77,163,255,.14), transparent 62%),
    radial-gradient(440px 220px at 82% 10%, rgba(47,163,107,.16), transparent 62%),
    radial-gradient(520px 260px at 60% 108%, rgba(255,224,130,.14), transparent 64%);
  opacity:.95;
  pointer-events:none;
}
.ndf-edu .tile > .in{
  position:relative;
  padding:16px 16px 14px;
  min-height:190px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
}
.ndf-edu .label{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,23,42,.58);
}
.ndf-edu .tTitle{
  margin:6px 0 0;
  font-size:18px;
  line-height:1.18;
  letter-spacing:-.01em;
}
.ndf-edu .tText{
  margin:8px 0 0;
  font-size:13px;
  line-height:1.55;
  color:rgba(15,23,42,.72);
}
.ndf-edu .tGo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:13px;
  color:rgba(15,23,42,.86);
  padding-bottom:2px;
  border-bottom:1px solid rgba(47,122,74,.28);
  width:fit-content;
}
.ndf-edu .tile:hover{
  transform: translateY(-2px);
  box-shadow: var(--sh2);
  border-color: rgba(47,122,74,.36);
  outline: 2px solid rgba(47,122,74,.14);
}

/* External link card */
.ndf-edu .linkCard{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 14px;
  border-radius:20px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  transition:.18s ease;
}
.ndf-edu .linkCard:hover{
  transform: translateY(-1px);
  box-shadow: var(--sh2);
  border-color: rgba(47,122,74,.28);
}
.ndf-edu .linkCard .l{display:grid;gap:3px}
.ndf-edu .linkCard .l b{font-size:14px}
.ndf-edu .linkCard .l span{font-size:13px;color:rgba(15,23,42,.62)}
.ndf-edu .linkCard .a{
  width:36px;height:36px;border-radius:16px;
  display:grid;place-items:center;
  background: rgba(47,122,74,.10);
  border:1px solid rgba(47,122,74,.18);
  flex:0 0 auto;
}
.ndf-edu .linkCard svg{width:18px;height:18px;opacity:.92}

/* Responsive */
@media (max-width: 980px){
  .ndf-edu .kpis{grid-template-columns:1fr}
  .ndf-edu .grid3{grid-template-columns:1fr}
  .ndf-edu .hero{padding-top:40px}
}

/* ===== Multanima ===== */
.ndf-multanima{
  --bg:#FFFFFF;
  --ink:#0F172A;
  --muted:rgba(15,23,42,.72);
  --line:rgba(15,23,42,.10);

 
  --g1:#2F7A4A;
  --g2:#256A40;
  --g3:#2FA36B;

  --b1:#4DA3FF;
  --y1:#FFE082;

  --soft:#F3F4F6;
  --r:22px;
  --r2:28px;
  --sh: 0 18px 44px rgba(15,23,42,.10);
  --sh2: 0 26px 62px rgba(15,23,42,.14);

  font-family: Inter, "PT Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:transparent;
}
.ndf-multanima *{box-sizing:border-box}
.ndf-multanima a,
.ndf-multanima a:visited{color:inherit !important;text-decoration:none !important}
.ndf-multanima a:hover{color:inherit !important}

.ndf-multanima .wrap{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}

.ndf-multanima .hero{
  margin: 10px auto 0;
  padding:56px 0 26px;
  border:1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--sh);
  background:
    radial-gradient(1100px 460px at 12% 20%, rgba(77,163,255,.14), transparent 60%),
    radial-gradient(900px 420px at 92% 12%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(760px 360px at 58% 98%, rgba(255,224,130,.14), transparent 60%),
    #FFFFFF;
  position:relative;
  overflow:hidden;
}

.ndf-multanima .daisyBg{
  position:absolute;
  right:-120px;
  top:-90px;
  width:520px;
  height:520px;
  opacity:.18;
  pointer-events:none;
}

.ndf-multanima .kicker{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(15,23,42,.62);
}
.ndf-multanima .hrow{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
}
.ndf-multanima .daisyMark{
  width:34px;
  height:34px;
  flex:0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(15,23,42,.10));
}
.ndf-multanima h1{
  margin:0;
  font-size:clamp(30px, 3.5vw, 46px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.ndf-multanima .lead{
  margin:12px 0 0;
  font-size:16px;
  line-height:1.72;
  color:rgba(15,23,42,.78);
  max-width:92ch;
}
.ndf-multanima .meta{
  margin:10px 0 0;
  font-size:13px;
  line-height:1.65;
  color:rgba(15,23,42,.66);
  max-width:100ch;
}

/* KPI row */
.ndf-multanima .kpis{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.ndf-multanima .kpi{
  border-radius:20px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  padding:14px 14px 12px;
}
.ndf-multanima .kpi .t{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,23,42,.58);
}
.ndf-multanima .kpi .v{
  margin-top:8px;
  font-size:15px;
  line-height:1.35;
  color:rgba(15,23,42,.86);
}
.ndf-multanima .kpi .v b{
  color:rgba(15,23,42,.92);
}

/* Buttons */
.ndf-multanima .ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.ndf-multanima .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none !important;
  font-weight:900;
  font-size:14px;
  border:1px solid rgba(47,122,74,.22);
  background: rgba(47,122,74,.08);
  color: var(--ink) !important;
  transition:.16s ease;
}
.ndf-multanima .btn:hover{
  transform: translateY(-1px);
  border-color: rgba(47,122,74,.38);
  background: rgba(47,122,74,.12);
}
.ndf-multanima .btnPrimary{
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color:#fff !important;
  border-color:transparent;
}
.ndf-multanima .btnPrimary:hover{
  background: linear-gradient(135deg, #1A6035, #134C2A);
}

/* Sections */
.ndf-multanima .section{
  padding:34px 0 44px;
}
.ndf-multanima .panel{
  background:#FFFFFF;
  border:1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--sh);
  overflow:hidden;
}
.ndf-multanima .panelIn{
  padding:18px 18px 18px;
}
.ndf-multanima .h2{
  margin:0;
  font-size:18px;
  font-weight:900;
  letter-spacing:-.01em;
}
.ndf-multanima .sub{
  margin:8px 0 0;
  color:rgba(15,23,42,.72);
  line-height:1.65;
  max-width:92ch;
}

/* Tiles */
.ndf-multanima .grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}
.ndf-multanima .tile{
  position:relative;
  display:block;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.70));
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  transition: .18s ease;
}
.ndf-multanima .tile::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 220px at 18% 18%, rgba(77,163,255,.14), transparent 62%),
    radial-gradient(440px 220px at 82% 10%, rgba(47,163,107,.16), transparent 62%),
    radial-gradient(520px 260px at 60% 108%, rgba(255,224,130,.14), transparent 64%);
  opacity:.95;
  pointer-events:none;
}
.ndf-multanima .tile > .in{
  position:relative;
  padding:16px 16px 14px;
  min-height:164px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
}
.ndf-multanima .label{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,23,42,.58);
}
.ndf-multanima .tTitle{
  margin:0;
  font-size:18px;
  line-height:1.18;
  letter-spacing:-.01em;
}
.ndf-multanima .tText{
  margin:0;
  font-size:13px;
  line-height:1.55;
  color:rgba(15,23,42,.72);
}
.ndf-multanima .tGo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:13px;
  color:rgba(15,23,42,.86);
  padding-bottom:2px;
  border-bottom:1px solid rgba(47,122,74,.28);
  width:fit-content;
}
.ndf-multanima .tile:hover{
  transform: translateY(-2px);
  box-shadow: var(--sh2);
  border-color: rgba(47,122,74,.36);
  outline: 2px solid rgba(47,122,74,.14);
}

/* External link block */
.ndf-multanima .linkCard{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 14px;
  border-radius:20px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  transition:.18s ease;
}
.ndf-multanima .linkCard:hover{
  transform: translateY(-1px);
  box-shadow: var(--sh2);
  border-color: rgba(47,122,74,.28);
}
.ndf-multanima .linkCard .l{display:grid;gap:3px}
.ndf-multanima .linkCard .l b{font-size:14px}
.ndf-multanima .linkCard .l span{font-size:13px;color:rgba(15,23,42,.62)}
.ndf-multanima .linkCard .a{
  width:36px;height:36px;border-radius:16px;
  display:grid;place-items:center;
  background: rgba(47,122,74,.10);
  border:1px solid rgba(47,122,74,.18);
  flex:0 0 auto;
}
.ndf-multanima .linkCard svg{width:18px;height:18px;opacity:.92}

@media (max-width: 980px){
  .ndf-multanima .kpis{grid-template-columns:1fr}
  .ndf-multanima .grid3{grid-template-columns:1fr}
  .ndf-multanima .hero{padding-top:40px}
}

/* ===== Multtherapy  ===== */
.ndf-mt{
  --bg:#FFFFFF;
  --ink:#0F172A;
  --muted:rgba(15,23,42,.72);
  --line:rgba(15,23,42,.10);

  --g1:#2F7A4A;
  --g2:#256A40;
  --b1:#4DA3FF;
  --y1:#FFE082;

  --soft:#F3F4F6;
  --r:22px;
  --r2:28px;
  --sh: 0 18px 44px rgba(15,23,42,.10);
  --sh2: 0 26px 62px rgba(15,23,42,.14);

  font-family: Inter, "PT Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
}
.ndf-mt *{box-sizing:border-box}
.ndf-mt a,.ndf-mt a:visited{color:inherit !important;text-decoration:none !important}
.ndf-mt a:hover{color:inherit !important}

.ndf-mt .wrap{ width:min(1200px, calc(100% - 40px)); margin:0 auto; }

.ndf-mt .hero{
  margin: 10px auto 0;
  padding:56px 0 26px;
  border:1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--sh);
  background:
    radial-gradient(1100px 460px at 12% 20%, rgba(77,163,255,.14), transparent 60%),
    radial-gradient(900px 420px at 92% 12%, rgba(47,163,107,.14), transparent 62%),
    radial-gradient(760px 360px at 58% 98%, rgba(255,224,130,.14), transparent 60%),
    #FFFFFF;
  position:relative;
  overflow:hidden;
}
.ndf-mt .kicker{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(15,23,42,.62);
}
.ndf-mt .hrow{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
}
.ndf-mt h1{
  margin:0;
  font-size:clamp(30px, 3.5vw, 46px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.ndf-mt .lead{
  margin:12px 0 0;
  font-size:16px;
  line-height:1.72;
  color:rgba(15,23,42,.78);
  max-width:92ch;
}

.ndf-mt .ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.ndf-mt .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none !important;
  font-weight:900;
  font-size:14px;
  border:1px solid rgba(47,122,74,.22);
  background: rgba(47,122,74,.08);
  color: var(--ink) !important;
  transition:.16s ease;
}
.ndf-mt .btn:hover{
  transform: translateY(-1px);
  border-color: rgba(47,122,74,.38);
  background: rgba(47,122,74,.12);
}
.ndf-mt .btnPrimary{
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color:#fff !important;
  border-color:transparent;
}
.ndf-mt .btnPrimary:hover{
  background: linear-gradient(135deg, #1A6035, #134C2A);
}

.ndf-mt .section{ padding:34px 0 44px; }
.ndf-mt .panel{
  background:#FFFFFF;
  border:1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--sh);
  overflow:hidden;
}
.ndf-mt .panelIn{ padding:18px 18px 18px; }
.ndf-mt .h2{
  margin:0;
  font-size:18px;
  font-weight:900;
  letter-spacing:-.01em;
}
.ndf-mt .sub{
  margin:8px 0 0;
  color:rgba(15,23,42,.72);
  line-height:1.65;
  max-width:92ch;
  font-size:13.5px;
}

.ndf-mt .grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}
.ndf-mt .grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}

.ndf-mt .tile{
  position:relative;
  display:block;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.70));
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
  transition: .18s ease;
}
.ndf-mt .tile::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 220px at 18% 18%, rgba(77,163,255,.14), transparent 62%),
    radial-gradient(440px 220px at 82% 10%, rgba(47,163,107,.16), transparent 62%),
    radial-gradient(520px 260px at 60% 108%, rgba(255,224,130,.14), transparent 64%);
  opacity:.95;
  pointer-events:none;
}
.ndf-mt .tile > .in{
  position:relative;
  padding:16px 16px 14px;
  min-height:176px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
}
.ndf-mt .label{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,23,42,.58);
}
.ndf-mt .tTitle{
  margin:0;
  font-size:18px;
  line-height:1.18;
  letter-spacing:-.01em;
}
.ndf-mt .tText{
  margin:0;
  font-size:13px;
  line-height:1.55;
  color:rgba(15,23,42,.72);
}
.ndf-mt .tGo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:13px;
  color:rgba(15,23,42,.86);
  padding-bottom:2px;
  border-bottom:1px solid rgba(47,122,74,.28);
  width:fit-content;
}
.ndf-mt .tile:hover{
  transform: translateY(-2px);
  box-shadow: var(--sh2);
  border-color: rgba(47,122,74,.36);
  outline: 2px solid rgba(47,122,74,.14);
}

@media (max-width: 980px){
  .ndf-mt .grid3{grid-template-columns:1fr}
  .ndf-mt .grid2{grid-template-columns:1fr}
  .ndf-mt .hero{padding-top:40px}
}
/* ===== Global fix for regular text links ===== */

/* Общий цвет ссылок */
:root{
  --ndf-link: #256A40;
  --ndf-link-hover: #1A6035;
  --ndf-link-visited: #2F7A4A;
}

/* Обычные текстовые ссылки внутри контентных страниц */
.ndf-today a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link),
.ndf-about a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link),
.ndf-projects a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link),
.ndf-news a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link),
.ndf-partners a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link),
.ndf-privacy a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link),
.ndf-docs a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link),
.ndf-contacts a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link),
.ndf-archive a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):not(.linkBtn),
.ndf-animatika a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):not(.pLink),
.ndf-legacy a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link),
.ndf-childanim a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link),
.ndf-edu a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):not(.linkCard),
.ndf-multanima a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):not(.linkCard),
.ndf-mt a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link) {
  color: var(--ndf-link) !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(37, 106, 64, .35) !important;
  text-underline-offset: 2px;
  transition: color .16s ease, text-decoration-color .16s ease;
}

.ndf-today a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):visited,
.ndf-about a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):visited,
.ndf-projects a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):visited,
.ndf-news a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):visited,
.ndf-partners a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):visited,
.ndf-privacy a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):visited,
.ndf-docs a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):visited,
.ndf-contacts a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):visited,
.ndf-archive a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):not(.linkBtn):visited,
.ndf-animatika a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):not(.pLink):visited,
.ndf-legacy a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):visited,
.ndf-childanim a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):visited,
.ndf-edu a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):not(.linkCard):visited,
.ndf-multanima a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):not(.linkCard):visited,
.ndf-mt a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):visited {
  color: var(--ndf-link-visited) !important;
}

.ndf-today a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):hover,
.ndf-about a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):hover,
.ndf-projects a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):hover,
.ndf-news a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):hover,
.ndf-partners a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):hover,
.ndf-privacy a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):hover,
.ndf-docs a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):hover,
.ndf-contacts a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):hover,
.ndf-archive a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):not(.linkBtn):hover,
.ndf-animatika a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):not(.pLink):hover,
.ndf-legacy a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):hover,
.ndf-childanim a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):hover,
.ndf-edu a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):not(.linkCard):hover,
.ndf-multanima a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):not(.linkCard):hover,
.ndf-mt a:not(.btn):not(.btnPrimary):not(.tile):not(.tGo):not(.nav-link):hover {
  color: var(--ndf-link-hover) !important;
  text-decoration-color: rgba(26, 96, 53, .55) !important;
}
html, body {
  margin: 0 !important;
  padding: 0 !important;
}

body {
  background: #f3f5f2;
}

#page,
.site,
.site-content,
.site-main,
.wp-site-blocks,
.entry-content,
main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#ndf-header {
  margin-top: 0 !important;
}

/* Корректная работа со штатной панелью WordPress */
body.admin-bar #ndf-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar #ndf-header {
    top: 46px;
  }
}

/* Если тема добавляет отступ первому блоку после шапки */
body #ndf-header + *,
body .site-header + *,
body .wp-site-blocks > *:first-child,
body main > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
#ndf-overlay-decor .ndf-daisy::before {
  inset: -8%; /* добавляет "воздух" вокруг SVG */
}
